From: Jeff Trawick Date: Thu, 6 Sep 2001 18:22:46 +0000 (+0000) Subject: work around an AIX "issue" in the construction of config_vars.mk by X-Git-Tag: 2.0.26~305 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e761a52a7c15c6a26f983e08a4fac85f8b63680d;p=apache work around an AIX "issue" in the construction of config_vars.mk by 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 --- diff --git a/acinclude.m4 b/acinclude.m4 index d14f2d579d..fe916b1396 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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