From 278aa4c5c86b3b50102c3157ca5f7046dc2b4d8b Mon Sep 17 00:00:00 2001 From: Gurucharan Shetty Date: Fri, 14 Feb 2014 12:40:56 -0800 Subject: [PATCH] cccl: Remove the seemingly wrong "lib" prefix. I have not seen a use case where the "lib" prefix is needed. In my tests, I see that adding the additional "lib" prefix causes libraries to not be recognized. Signed-off-by: Gurucharan Shetty Acked-by: Ben Pfaff --- build-aux/cccl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/build-aux/cccl b/build-aux/cccl index 0c7f3d967..855f1831e 100644 --- a/build-aux/cccl +++ b/build-aux/cccl @@ -97,11 +97,7 @@ EOF -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" -- 2.20.1