mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 16:39:36 +00:00
hints: Fix >&4
Fix the redirection in the two hints files
This commit is contained in:
parent
2979f5f343
commit
debb0f4176
@ -670,7 +670,7 @@ EOF
|
||||
$cc -q64 -qlongdouble -o fmodl$$ fmodl$$.c -lm
|
||||
case `./fmodl$$` in
|
||||
2147483648)
|
||||
echo "The -q64 did the trick, will use it." >& 4
|
||||
echo "The -q64 did the trick, will use it." >&4
|
||||
ccflags="`echo $ccflags | sed -e 's@-q32@@g'`"
|
||||
ldflags="`echo $ldflags | sed -e 's@-q32@@g'`"
|
||||
ccflags="$ccflags -q64"
|
||||
|
||||
@ -487,7 +487,7 @@ esac
|
||||
for p in $loclibpth
|
||||
do
|
||||
if test -d $p; then
|
||||
echo "Appending $p to LD_LIBRARY_PATH." >& 4
|
||||
echo "Appending $p to LD_LIBRARY_PATH." >&4
|
||||
case "$LD_LIBRARY_PATH" in
|
||||
'') LD_LIBRARY_PATH=$p ;;
|
||||
*) LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$p ;;
|
||||
@ -496,7 +496,7 @@ do
|
||||
done
|
||||
case "$LD_LIBRARY_PATH" in
|
||||
"$old_LD_LIBRARY_PATH") ;;
|
||||
*) echo "LD_LIBRARY_PATH is now $LD_LIBRARY_PATH." >& 4 ;;
|
||||
*) echo "LD_LIBRARY_PATH is now $LD_LIBRARY_PATH." >&4 ;;
|
||||
esac
|
||||
case "$LD_LIBRARY_PATH" in
|
||||
'') ;;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user