]> granicus.if.org Git - apache/commitdiff
work around an AIX "issue" in the construction of config_vars.mk by
authorJeff Trawick <trawick@apache.org>
Thu, 6 Sep 2001 18:22:46 +0000 (18:22 +0000)
committerJeff Trawick <trawick@apache.org>
Thu, 6 Sep 2001 18:22:46 +0000 (18:22 +0000)
modifying the sed expression just a bit;

note that before and after this change manualdir isn't being handled
properly; using the default Apache layout we get

  manualdir = $datadir/manual

instead of

  manualdir = $(datadir)/manual

Submitted by: Victor Orlikowski, after I narrowed down the issue

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90930 13f79535-47bb-0310-9956-ffa450edef68

acinclude.m4

index d14f2d579dd5d9154b9622fecdfeb1ecbfd8021e..fe916b1396ec6192c55f8033dfa8e02686256d15 100644 (file)
@@ -292,7 +292,7 @@ AC_DEFUN(APACHE_LAYOUT,[
         ;;
     esac
     val=`echo $val | sed -e 's:\(.\)/*$:\1:'`
-    val=`echo $val | sed -e 's:$\([a-z_]*\):$(\1):g'`
+    val=`echo $val | sed -e 's:[\$]\([a-z_]*\):$(\1):g'`
     if test "$autosuffix" = "yes"; then
       if echo $val | grep apache >/dev/null; then
         addtarget=no