Fix library path handling

This commit is contained in:
Anthony Green
2018-03-27 11:20:21 -04:00
parent d78c5f64f8
commit b40a386c22

View File

@@ -1,4 +1,4 @@
!/bin/sh #!/bin/sh
# ***** BEGIN LICENSE BLOCK ***** # ***** BEGIN LICENSE BLOCK *****
# Version: MPL 1.1/GPL 2.0/LGPL 2.1 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
@@ -175,14 +175,14 @@ do
IFS=\; IFS=\;
found= found=
for d in $libpaths; do for d in $libpaths; do
d=`cygpath $d` d=$(cygpath $d)
if [ -f "$d/lib${1#-l}.a" ]; then if [ -f "$d/lib${1#-l}.a" ]; then
found="lib${1#-l}.a" found="lib${1#-l}.a"
break; break;
fi fi
done done
IFS="$IFS_save" IFS="$IFS_save"
args="$args ${found:-${1#-l}.lib}" linkargs="$linkargs ${found:-${1#-l}.lib}"
shift 1 shift 1
;; ;;
-W|-Wextra) -W|-Wextra)