From: Francesco Chemolli Date: Thu, 19 Nov 2009 23:32:21 +0000 (+0100) Subject: Fix testheaders.sh: it must build a true executable X-Git-Tag: SQUID_3_2_0_1~554 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9b3ba978e1449d7f7914f2bbd8c7fc3aa6d9355c;p=thirdparty%2Fsquid.git Fix testheaders.sh: it must build a true executable --- diff --git a/test-suite/testheaders.sh b/test-suite/testheaders.sh index 41429438ca..457496a12e 100755 --- a/test-suite/testheaders.sh +++ b/test-suite/testheaders.sh @@ -36,6 +36,7 @@ for f in `cd ${dir} && ls -1 *.h 2>/dev/null`; do fi echo "OK." # unit-tests require an app to run. - # our most-recent object suits this purpose - cp ./testHeaderDeps_${hdr}.o ./testHeaders + # our most-recent object suits this purpose. + # let's link or some tests will fail + ${cc} ./testHeaderDeps_${hdr}.o -o ./testHeaders done