diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-30 13:51:24 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-08-30 13:51:24 +0000 |
commit | 45c9e83b07a146ad42e19f44b9def27ecbdcd9e2 (patch) | |
tree | a2baac2860572164bf5c375a2fe8d90a40080611 /hints/solaris_2.sh | |
parent | bc1ad33168dad61eed9029d25ff2214e8d8845ce (diff) | |
download | perl-45c9e83b07a146ad42e19f44b9def27ecbdcd9e2.tar.gz |
Reset archname and archname64 always, forcing them be
recomputed at each Configure run, make Configure and
the hints files agree on the naming of largefiles variables.
p4raw-id: //depot/perl@6912
Diffstat (limited to 'hints/solaris_2.sh')
-rw-r--r-- | hints/solaris_2.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index f698a502ff..bf2f1956a0 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -379,13 +379,13 @@ case "$uselargefiles" in ''|$define|true|[yY]*) # Keep these in the left margin. -ccflags_largefiles="`getconf LFS_CFLAGS 2>/dev/null`" -ldflags_largefiles="`getconf LFS_LDFLAGS 2>/dev/null`" -libswanted_largefiles="`getconf LFS_LIBS 2>/dev/null|sed -e 's@^-l@@' -e 's@ -l@ @g`" +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`" - ccflags="$ccflags $ccflags_largefiles" - ldflags="$ldflags $ldflags_largefiles" - libswanted="$libswanted $libswanted_largefiles" + ccflags="$ccflags $ccflags_uselargefiles" + ldflags="$ldflags $ldflags_uselargefiles" + libswanted="$libswanted $libswanted_uselargefiles" ;; esac EOCBU |