diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 2007-05-31 11:08:46 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 2007-05-31 11:08:46 +0000 |
commit | ba32102818e13876d70f494e70253167f9f538cd (patch) | |
tree | 21be095ca7e898e77df2397667776c2a95ab9433 /www/apache13 | |
parent | d06054d32075ca13094d0fd4fd4a16600f1d71b7 (diff) | |
download | ports-ba32102818e13876d70f494e70253167f9f538cd.tar.gz ports-ba32102818e13876d70f494e70253167f9f538cd.zip |
Fix build when custom LC_ALL is set
PR: 96703
Notes
Notes:
svn path=/head/; revision=192469
Diffstat (limited to 'www/apache13')
-rw-r--r-- | www/apache13/files/patch-ae | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/www/apache13/files/patch-ae b/www/apache13/files/patch-ae index 3aecfbb7a542..ad11a7d2b3a1 100644 --- a/www/apache13/files/patch-ae +++ b/www/apache13/files/patch-ae @@ -1,5 +1,14 @@ --- src/Configure.orig Wed Jul 12 12:16:05 2006 -+++ src/Configure Wed Apr 4 19:03:41 2007 ++++ src/Configure Thu May 31 15:03:01 2007 +@@ -26,7 +26,7 @@ + # fp2rp: + # slo.sh: + +-LANG=C; export LANG ++LC_ALL=C; export LC_ALL + exitcode=0 + trap 'rm -f $tmpfile $tmpfile2 $tmpfile3 $tmpconfig $awkfile; exit $exitcode' 0 1 2 3 15 + @@ -457,7 +457,7 @@ PLATOSVERS=`echo $PLAT | sed 's/^.*freebsd//'` OS="FreeBSD $PLATOSVERS" |