diff options
Diffstat (limited to 'hints')
-rw-r--r-- | hints/linux.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hints/linux.sh b/hints/linux.sh index e03ab1edcf..970640c29b 100644 --- a/hints/linux.sh +++ b/hints/linux.sh @@ -164,8 +164,10 @@ esac # plibpth to bypass this check. case "$plibpth" in '') plibpth=`gcc -print-search-dirs | grep libraries | - cut -f2- -d= | tr ':' $trnl | grep -v 'gcc'` - plibpth="$plibpth" # Collapse all entries on one line + cut -f2- -d= | tr ':' $trnl | grep -v 'gcc' | sed -e 's:/$::'` + set X $plibpth # Collapse all entries on one line + shift + plibpth="$*" ;; esac |