Change 34870 by [EMAIL PROTECTED] on 2008/11/17 18:28:07
Subject: [PATCH] Fix a missing single quote in hints/solaris_2.sh
From: Andy Dougherty <[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
Date: Mon, 17 Nov 2008 13:11:59 -0500 (EST)
Affected files ...
... //depot/perl/hints/solaris_2.sh#108 edit
Differences ...
==== //depot/perl/hints/solaris_2.sh#108 (text) ====
Index: perl/hints/solaris_2.sh
--- perl/hints/solaris_2.sh#107~32429~ 2007-11-20 23:15:56.000000000 -0800
+++ perl/hints/solaris_2.sh 2008-11-17 10:28:07.000000000 -0800
@@ -450,7 +450,7 @@
# 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 '[EMAIL
PROTECTED]@@' -e 's@ -l@ @g`"
+libswanted_uselargefiles="`getconf LFS_LIBS 2>/dev/null|sed -e '[EMAIL
PROTECTED]@@' -e 's@ -l@ @g'`"
ccflags="$ccflags $ccflags_uselargefiles"
ldflags="$ldflags $ldflags_uselargefiles"
End of Patch.