diff options
author | Nicholas Clark <nick@ccl4.org> | 2002-10-29 15:01:39 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2002-11-04 16:08:22 +0000 |
commit | 48fe685d5098bdc7e2779da74c52af7e601b5c7e (patch) | |
tree | b15b0d9dabc6d411c0b610f43ae573eadfa4a47a /Configure | |
parent | 0cb1bcd767130db77ed8023ee2016fa4885493c4 (diff) | |
download | perl-48fe685d5098bdc7e2779da74c52af7e601b5c7e.tar.gz |
Changed the warning detection pattern because of:
Subject: ccache gcc3.2 doesn't work
Message-ID: <20021029150139.J82080@plum.flirble.org>
p4raw-id: //depot/perl@18094
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Wed Oct 2 11:55:39 METDST 2002 [metaconfig 3.0 PL70] +# Generated on Mon Nov 4 18:09:25 MET 2002 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -3843,7 +3843,7 @@ if $cc -o try $ccflags $ldflags try.c; then case "$gccversion" in '') echo "You are not using GNU cc." ;; *) echo "You are using GNU cc $gccversion." - ccname=gcc + ccname=gcc ;; esac else @@ -3903,7 +3903,7 @@ case "$gccversion" in echo "main(){}">try.c for incdir in $locincpth; do warn=`$cc $ccflags -I$incdir -c try.c 2>&1 | \ - grep '^cc1: warning: changing search order '` + grep '^c[cp]p*[01]: warning: changing search order '` if test "X$warn" != X; then locincpth=`echo " $locincpth " | sed "s! $incdir ! !"` fi @@ -6445,9 +6445,9 @@ else $cat <<EOM In some special cases, particularly when building $package for distribution, -it is convenient to distinguish the directory in which files should be -installed from the directory ($prefix) in which they will -eventually reside. For most users, these two directories are the same. +it is convenient to distinguish between the directory in which files should +be installed from the directory ($prefix) in which they +will eventually reside. For most users, these two directories are the same. EOM case "$installprefix" in |