]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* tests/demo-noinst-link.test: $make is empty on MSYS, replace
authorPeter Ekberg <peda@lysator.liu.se>
Thu, 28 Jul 2005 10:44:34 +0000 (10:44 +0000)
committerPeter Rosin <peda@lysator.liu.se>
Thu, 28 Jul 2005 10:44:34 +0000 (10:44 +0000)
with $MAKE. Makes the test pass for MinGW.

ChangeLog
tests/demo-noinst-link.test

index 696582a4ebf00a31d8620d9b546194583a6dd187..9bfc8c17f71712aa9973ad2ae717a4715569b086 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-28  Peter Ekberg  <peda@lysator.liu.se>
+
+       * tests/demo-noinst-link.test: $make is empty on MSYS, replace
+       with $MAKE. Makes the test pass for MinGW.
+
 2005-07-28  Peter Ekberg  <peda@lysator.liu.se>
 
        * config/ltmain.m4sh (func_generate_dlsyms): Properly remove
index bb60088700230425f661b5afc3d1300edeee72aa..e197502f3e699a22fc9a258df572c0458b6df4da 100755 (executable)
@@ -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