From: Bernhard Voelker Date: Fri, 24 Feb 2012 11:22:20 +0000 (+0100) Subject: tests: remove unnecessary use of -lc X-Git-Tag: v8.16~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f19747455eb0f2e44a61582e16ee5a1a8c7af08d;p=thirdparty%2Fcoreutils.git tests: remove unnecessary use of -lc * tests/ls/getxattr-speedup: Remove unneeded use of -lc. --- diff --git a/tests/ls/getxattr-speedup b/tests/ls/getxattr-speedup index a35dd695ac..d32e24abba 100755 --- a/tests/ls/getxattr-speedup +++ b/tests/ls/getxattr-speedup @@ -48,7 +48,7 @@ EOF # Then compile/link it: $CC -fPIC -O2 -c k.c || framework_failure_ 'failed to compile with -fPIC' -ld -G k.o -lc -o k.so || framework_failure_ 'failed to invoke ld -G ...' +ld -G k.o -o k.so || framework_failure_ 'failed to invoke ld -G ...' # Create a few files: seq 20 | xargs touch || framework_failure_