From 9b3ba978e1449d7f7914f2bbd8c7fc3aa6d9355c Mon Sep 17 00:00:00 2001 From: Francesco Chemolli Date: Fri, 20 Nov 2009 00:32:21 +0100 Subject: [PATCH] Fix testheaders.sh: it must build a true executable --- test-suite/testheaders.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 -- 2.47.2