summaryrefslogtreecommitdiff
path: root/hints/solaris_2.sh
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2008-11-17 08:11:59 -0500
committerNicholas Clark <nick@ccl4.org>2008-11-17 18:28:07 +0000
commitc9907023d869893333355372c9385acf6c758809 (patch)
tree8d5c49cd3a49b6c916ec8efa0cabb7ce565aac67 /hints/solaris_2.sh
parent324f9e447b92fcae02f7f5d22ef0a619f9b08d2e (diff)
downloadperl-c9907023d869893333355372c9385acf6c758809.tar.gz
Fix a missing single quote in hints/solaris_2.sh
Message-ID: <Pine.LNX.4.64.0811171300350.16632@fractal.phys.lafayette.edu> Date: Mon, 17 Nov 2008 13:11:59 -0500 (EST) p4raw-id: //depot/perl@34870
Diffstat (limited to 'hints/solaris_2.sh')
-rw-r--r--hints/solaris_2.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh
index be2af76d58..8f0c3e6fbb 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"