From debb0f41760beb64e3bca1229fa70aa098f3702a Mon Sep 17 00:00:00 2001 From: Elvin Aslanov Date: Sun, 21 May 2023 19:27:46 +0000 Subject: [PATCH] hints: Fix >&4 Fix the redirection in the two hints files --- hints/aix.sh | 2 +- hints/dec_osf.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hints/aix.sh b/hints/aix.sh index 9f9b32c974..86fff48c00 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -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" diff --git a/hints/dec_osf.sh b/hints/dec_osf.sh index 4f3baef2a8..064d17c88d 100644 --- a/hints/dec_osf.sh +++ b/hints/dec_osf.sh @@ -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 '') ;;