X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=build-aux%2Fcccl;h=d6915aaffc9d4c18014937df419523f46a454a2a;hb=003ce655b7116d18c86a74c50391e54990346931;hp=0c7f3d967c06a231c2d08df42b9071ca55854f79;hpb=b73d3fe2c11d2d670092bce2da48c1ee0f6eaf5f;p=sliver-openvswitch.git diff --git a/build-aux/cccl b/build-aux/cccl index 0c7f3d967..d6915aaff 100644 --- a/build-aux/cccl +++ b/build-aux/cccl @@ -91,17 +91,13 @@ EOF -L*) path=`echo "$1" | sed 's/-L//'` - linkopt="$linkopt ${slash}LIBPATH:\"$path\"" + linkopt="$linkopt ${slash}LIBPATH:$path" cl_linkopt="${slash}link ${slash}LIBPATH:\"$path\"" ;; -l*) lib=`echo "$1" | sed 's/-l//'` - if [ $lib != "dnsapi" -a $lib != "ws2_32" -a $lib != "wsock32" ]; then - lib="lib$lib.lib" - else - lib="$lib.lib" - fi + lib="$lib.lib" clopt="$clopt $lib" linkopt="$linkopt $lib"