summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorsascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>2000-12-18 00:17:18 +0000
committersascha <sascha@13f79535-47bb-0310-9956-ffa450edef68>2000-12-18 00:17:18 +0000
commitf759a22454c9f0dddef19e74ddab527285a974a4 (patch)
tree674c78977b6e7c4f78d57e5a764a177971e809c6 /Makefile.in
parentd9013594bcfcc30ed10b1fd2bbaca08e5a04df3c (diff)
downloadlibapr-f759a22454c9f0dddef19e74ddab527285a974a4.tar.gz
Drop the Perl dependency and use an awk script for creating apr.exports.
git-svn-id: http://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: