From: Peter Ekberg Date: Thu, 28 Jul 2005 10:42:45 +0000 (+0000) Subject: * tests/demo-noinst-link.test: $make is empty on MSYS, replace X-Git-Tag: release-2-1b~604 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=764c665e7d373fcfff0a9600a74c3af4cd4d2acd;p=thirdparty%2Flibtool.git * tests/demo-noinst-link.test: $make is empty on MSYS, replace with $MAKE. Makes the test pass for MinGW. --- diff --git a/ChangeLog b/ChangeLog index 80ee77ce0..550adc1ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-07-28 Peter Ekberg + + * tests/demo-noinst-link.test: $make is empty on MSYS, replace + with $MAKE. Makes the test pass for MinGW. + 2005-07-28 Peter Ekberg * config/ltmain.m4sh (func_generate_dlsyms): Properly remove diff --git a/tests/demo-noinst-link.test b/tests/demo-noinst-link.test index bb6008870..e197502f3 100755 --- a/tests/demo-noinst-link.test +++ b/tests/demo-noinst-link.test @@ -50,7 +50,7 @@ rm -f libhello.la "hell$EXEEXT" status=$EXIT_SUCCESS func_msg "linking \`hell' with a broken \`demo/libhello.la'" -if $make "hell$EXEEXT" libhello_la_OBJECTS=hello.lo; then +if $MAKE "hell$EXEEXT" libhello_la_OBJECTS=hello.lo; then func_msg "Succeeded: this means the installed library was used, which is wrong" status=$EXIT_FAILURE fi