We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db6bbc7 commit 91eb0a6Copy full SHA for 91eb0a6
1 file changed
f_check
@@ -343,13 +343,13 @@ linker_a=""
343
344
if [ -n "$link" ]; then
345
346
- link=`echo "$link" | sed 's/\-Y[[:space:]]P\,/\-Y/g'`
+ link=`echo " $link" | sed 's/ \-Y[[:space:]]P\,/ \-Y/g'`
347
348
- link=`echo "$link" | sed 's/\-R[[:space:]]*/\-rpath\%/g'`
+ link=`echo "$link" | sed 's/ \-R[[:space:]]*/ \-rpath\%/g'`
349
350
- link=`echo "$link" | sed 's/\-rpath[[:space:]]+/\-rpath\%/g'`
+ link=`echo "$link" | sed 's/ \-rpath[[:space:]]+/ \-rpath\%/g'`
351
352
- link=`echo "$link" | sed 's/\-rpath-link[[:space:]]+/\-rpath-link\%/g'`
+ link=`echo "$link" | sed 's/ \-rpath-link[[:space:]]+/ \-rpath-link\%/g'`
353
354
flags=`echo "$link" | tr "',\n" " "`
355
# remove leading and trailing quotes from each flag.
0 commit comments