* Albert Chin wrote on Wed, May 03, 2006 at 07:02:59PM CEST: > On Wed, May 03, 2006 at 06:16:46PM +0200, Ralf Wildenhues wrote: > > > > This should work. Let's just hope there is no legacy system where both > > "test -x" doesn't work and the linker outputs broken binaries.
> It works fine. Thanks. Applied. Sorry again. Cheers, Ralf * tests/fail.at: Use "test -x" if available, for testing of executables; code modified from Autoconf's AS_EXECUTABLE_P. Reported by Albert Chin <[EMAIL PROTECTED]>. Index: tests/fail.at =================================================================== RCS file: /cvsroot/libtool/libtool/tests/fail.at,v retrieving revision 1.3 diff -u -r1.3 fail.at --- tests/fail.at 5 Feb 2006 09:56:44 -0000 1.3 +++ tests/fail.at 3 May 2006 16:11:23 -0000 @@ -28,6 +28,17 @@ [AT_CHECK([if $1; then (exit 1); else :; fi], [0], [ignore], [ignore]) ]) +AT_DATA([script], +[[#! /bin/sh +exit 0 +]]) +chmod +x script +if test -x script >/dev/null 2>&1; then + test_x="test -x" +else + test_x=: +fi + # compile failure echo 'choke me' > a.c FAIL_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c a.c]) @@ -52,9 +63,9 @@ echo 'int not_main(void) { return 0; }' > a.c $CC $CPPFLAGS $CFLAGS -c a.c FAIL_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o a a.$OBJEXT]) -AT_CHECK([test -f a || test -f a$EXEEXT], [1]) +AT_CHECK([{ test -f a && $test_x a; } || { test -f a$EXEEXT && $test_x a$EXEEXT; }], [1]) FAIL_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o a a.$OBJEXT -static]) -AT_CHECK([test -f a || test -f a$EXEEXT], [1]) +AT_CHECK([{ test -f a && $test_x a; } || { test -f a$EXEEXT && $test_x a$EXEEXT; }], [1]) # shared library creation failure case $build_libtool_libs in yes) _______________________________________________ http://lists.gnu.org/mailman/listinfo/libtool