Skip to content

Commit 55e4a47

Browse files
committed
collapse plibpth to one line
The recent change to hints/linux.sh, 40f0262 set the plibpth variable. It was supposed to set all entries on a single line, but it didn't. Do it now,
1 parent ebf3760 commit 55e4a47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hints/linux.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ esac
165165
case "$plibpth" in
166166
'') plibpth=`gcc -print-search-dirs | grep libraries |
167167
cut -f2- -d= | tr ':' $trnl | grep -v 'gcc'`
168-
plibpth="$plibpth" # Collapse all entries on one line
168+
set $plibpth
169+
plibpth="$@" # Collapse all entries on one line
169170
;;
170171
esac
171172

0 commit comments

Comments
 (0)