summaryrefslogtreecommitdiff
path: root/apr-config.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2003-08-24 23:10:25 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2003-08-24 23:10:25 +0000
commit16512cd94e6eedbf7cbf781ad0777daac130c2ec (patch)
tree88e3f14373a6ef46274637af71ba488e23215a97 /apr-config.in
parent251df4aa89b535377422d035f11312c2b9105474 (diff)
downloadapr-16512cd94e6eedbf7cbf781ad0777daac130c2ec.tar.gz
Don't prefix $(SHELL) on the apr-libtool argument, as we're not guaranteed
that libtool is a shell script. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64594 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'apr-config.in')
-rw-r--r--apr-config.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/apr-config.in b/apr-config.in
index 797c1fe13..ae9ed4a5a 100644
--- a/apr-config.in
+++ b/apr-config.in
@@ -279,9 +279,9 @@ while test $# -gt 0; do
;;
--apr-libtool)
if test "$location" = "installed"; then
- echo "${SHELL} ${installbuilddir}/libtool"
+ echo "${installbuilddir}/libtool"
else
- echo "${SHELL} $thisdir/libtool"
+ echo "$thisdir/libtool"
fi
exit 0
;;