summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-12-01 15:45:24 +0000
committerJeff Trawick <trawick@apache.org>2000-12-01 15:45:24 +0000
commit027ce6451a53832fd151dbf7458de9728a648de9 (patch)
treed753d23b4499d0471c8736a6ab220433c9c33147
parentd0e24e20227551194bd8681ac4715780a22b7359 (diff)
downloadapr-027ce6451a53832fd151dbf7458de9728a648de9.tar.gz
When running make_export.pl from the build scripts, invoke the perl
interpreter explicitly so that the path coded in make_export.pl doesn't have to be correct. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60834 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--Makefile.in2
-rwxr-xr-xbuildconf2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index c9e436fd9..20a0c5a08 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -101,7 +101,7 @@ subdirs_distclean:
install: all
exports:
- ./helpers/make_export.pl -o ./apr.exports include/*.h
+ perl ./helpers/make_export.pl -o ./apr.exports include/*.h
docs:
./helpers/scandoc -i./helpers/default.pl -p./docs/ ./include/*.h
diff --git a/buildconf b/buildconf
index 52eb62970..ae721a55f 100755
--- a/buildconf
+++ b/buildconf
@@ -4,5 +4,5 @@ autoconf;autoheader
(cd shmem/unix/mm && autoconf)
-./helpers/make_export.pl -o ./apr.exports include/*.h
+perl ./helpers/make_export.pl -o ./apr.exports include/*.h