From 55e4a474ad63535e486bd657f45b5339709cbcd3 Mon Sep 17 00:00:00 2001 From: David Mitchell Date: Mon, 18 Apr 2011 23:43:27 +0100 Subject: [PATCH] collapse plibpth to one line The recent change to hints/linux.sh, 40f026236b9959b7ad3260fedc6c66cd30bb7abc set the plibpth variable. It was supposed to set all entries on a single line, but it didn't. Do it now, --- hints/linux.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hints/linux.sh b/hints/linux.sh index e03ab1edcf..d47439c2a1 100644 --- a/hints/linux.sh +++ b/hints/linux.sh @@ -165,7 +165,8 @@ esac 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 + set $plibpth + plibpth="$@" # Collapse all entries on one line ;; esac -- 2.34.1