From: Andy Dougherty Date: Mon, 17 Nov 2008 13:11:59 +0000 (-0500) Subject: Fix a missing single quote in hints/solaris_2.sh X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c9907023d869893333355372c9385acf6c758809;p=p5sagit%2Fp5-mst-13.2.git Fix a missing single quote in hints/solaris_2.sh Message-ID: Date: Mon, 17 Nov 2008 13:11:59 -0500 (EST) p4raw-id: //depot/perl@34870 --- diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index be2af76..8f0c3e6 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -450,7 +450,7 @@ case "$uselargefiles" in # Keep these in the left margin. ccflags_uselargefiles="`getconf LFS_CFLAGS 2>/dev/null`" ldflags_uselargefiles="`getconf LFS_LDFLAGS 2>/dev/null`" -libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`" +libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g'`" ccflags="$ccflags $ccflags_uselargefiles" ldflags="$ldflags $ldflags_uselargefiles"