summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorSascha Schumann <sascha@apache.org>2000-12-18 00:17:18 +0000
committerSascha Schumann <sascha@apache.org>2000-12-18 00:17:18 +0000
commit609771861a214f9564401dd71476a42dd789cc8c (patch)
tree674c78977b6e7c4f78d57e5a764a177971e809c6 /Makefile.in
parent68898efd083ae21d4f10ba4703798eaf8cd00e25 (diff)
downloadapr-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.in5
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: