From fd7f9d30becc0c05e9c5947ecf90862ac8363cf4 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 28 Apr 2005 05:08:02 +0000 Subject: [PATCH] From Marco Jez, added -ne option echo usage to fix stdout/stderr redirection error under Mingw. --- Make/dolink.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make/dolink.sh b/Make/dolink.sh index c0716138b..bd1e3a18e 100644 --- a/Make/dolink.sh +++ b/Make/dolink.sh @@ -53,7 +53,7 @@ else #4) strip the absolute path prefix of SRCDIR leading to the current ## directory, so we are left with the relative path from the current ## directory to the link source directory. Prefix that with PFX. - LINK="$PFX"`echo $SRCDIR $ROOTDIR | awk '{ print substr($1,length($2)+2,512) }'`/`basename $LNDEST` + LINK="$PFX"`echo -ne $SRCDIR $ROOTDIR | awk '{ print substr($1,length($2)+2,512) }'`/`basename $LNDEST` #5) Create the links by changing to the destination directory, ## removing any old versions of the link and creating a new one