diff options
author | Will Andrews <will@FreeBSD.org> | 2001-04-17 17:26:55 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-04-17 17:26:55 +0000 |
commit | d0166f0dd30091718b27a3a844f663f01924a97d (patch) | |
tree | f4fe77c20bd8af0e42ec58eeb04086ca687fc9ca /www/apache21/files/patch-configure | |
parent | e827fbe766b9b52f0ea9b6fa5fd784ec49536ef7 (diff) | |
download | ports-d0166f0dd30091718b27a3a844f663f01924a97d.tar.gz ports-d0166f0dd30091718b27a3a844f663f01924a97d.zip |
Fix problems with configure bug that doesn't evaluate variables for
support/*.in.
PR: 26570
Submitted by: maintainer
Found by: mharo
Notes
Notes:
svn path=/head/; revision=41579
Diffstat (limited to 'www/apache21/files/patch-configure')
-rw-r--r-- | www/apache21/files/patch-configure | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/www/apache21/files/patch-configure b/www/apache21/files/patch-configure index 5419d37c531c..2640a5466ac0 100644 --- a/www/apache21/files/patch-configure +++ b/www/apache21/files/patch-configure @@ -1,5 +1,5 @@ --- configure.orig Wed Apr 4 12:45:36 2001 -+++ configure Sun Apr 8 03:25:31 2001 ++++ configure Sat Apr 14 18:25:08 2001 @@ -3760,7 +3760,9 @@ -e "s/[ ]*$/'/g" \ $srcdir/config.layout > $pldconf @@ -10,6 +10,24 @@ rm $pldconf for var in prefix exec_prefix bindir sbindir libexecdir mandir \ sysconfdir datadir iconsdir htdocsdir cgidir includedir \ +@@ -3777,7 +3779,7 @@ + ;; + 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 +@@ -3788,7 +3790,7 @@ + val="$val/apache" + fi + fi +- eval "$var='$val'" ++ eval "$var=\"$val\"" + done + + @@ -9678,6 +9680,10 @@ |