diff options
author | Sascha Schumann <sascha@apache.org> | 2000-12-18 00:17:18 +0000 |
---|---|---|
committer | Sascha Schumann <sascha@apache.org> | 2000-12-18 00:17:18 +0000 |
commit | 609771861a214f9564401dd71476a42dd789cc8c (patch) | |
tree | 674c78977b6e7c4f78d57e5a764a177971e809c6 /Makefile.in | |
parent | 68898efd083ae21d4f10ba4703798eaf8cd00e25 (diff) | |
download | apr-609771861a214f9564401dd71476a42dd789cc8c.tar.gz |
Drop the Perl dependency and use an awk script for creating apr.exports.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 85a0ddd4d..c7df4215c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -10,6 +10,7 @@ SHELL=@SH@ MFLAGS_STATIC= RM=@RM@ CC=@CC@ +AWK=@AWK@ CFLAGS=@CFLAGS@ @OPTIM@ LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ $(LIBS) @@ -117,9 +118,9 @@ delete-exports: $(TARGET_EXPORTS): if test -z "$(srcdir)"; then \ - perl $(srcdir)helpers/make_export.pl -o $@ include/*.h; \ + $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h > $@ ; \ else \ - perl $(srcdir)helpers/make_export.pl -o $@ include/*.h $(srcdir)include/*.h; \ + $(AWK) -f $(srcdir)helpers/make_export.awk include/*.h $(srcdir)include/*.h > $@ ; \ fi docs: |