summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2002-04-18 09:14:53 +0000
committerJustin Erenkrantz <jerenkrantz@apache.org>2002-04-18 09:14:53 +0000
commit6f68ea714095f8117de7a52955ba6516fc53a57f (patch)
tree85a529bc33eaf6a1e047bd3a77253c5c9d60d0d6 /configure.in
parentcd06c929c44573672fe12ea8d023b8ad1c677954 (diff)
downloadapr-6f68ea714095f8117de7a52955ba6516fc53a57f.tar.gz
Fix a bad sed script - previously would leave the trailing slash on which
is annoying. Match the fix in httpd-2.0. Why can't we use dirname? git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@63275 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index b2f308bef..4a4941727 100644
--- a/configure.in
+++ b/configure.in
@@ -1717,7 +1717,7 @@ changequote({,})
if test -n "$USE_VPATH"; then
for makefile in $MAKEFILE1 $MAKEFILE2 $MAKEFILE3; do
- dir=`echo $makefile|sed 's%[^/][^/]*$%%'`
+ dir=`echo $makefile|sed 's%/*[^/][^/]*$%%'`
(cat <<EOF
srcdir = $apr_srcdir/$dir
VPATH = $apr_srcdir/$dir