hints: Fix >&4

Fix the redirection in the two hints files
This commit is contained in:
Elvin Aslanov 2023-05-21 19:27:46 +00:00 committed by Leon Timmermans
parent 2979f5f343
commit debb0f4176
2 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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
'') ;;