On Monday 23 April 2001 4:48 pm, Tim Mooney wrote:
> In regard to: 1.3e (1.910) test results for alpha-dec-osf4.0f (PASS),
Russ...:
> Wouldn't it be a win to add
>
> MAKE="$(MAKE)"
>
> to the TESTS_ENVIRONMENT in tests/Makefile.am, so we're certain that all
> the *.test scripts get the same make that was used in the top level
> directory? With that change in place, using
>
> gmake check
>
> now works.
Good idea! I just applied the attached patch to HEAD, and the equivalent to
MLB. Thanks!
Cheers,
Gary.
--
___ _ ___ __ _ mailto: [EMAIL PROTECTED]
/ __|__ _ _ ___ _| | / / | / /_ _ _ _ __ _| |_ __ _ ___ [EMAIL PROTECTED]
| (_ / _` | '_|// / |/ /| |/ / _` | || / _` | ' \/ _` | _ \
\___\__,_|_|\_, /|___(_)___/\__,_|\_,_\__, |_||_\__,_|//_/
home page: /___/ /___/ gpg public key:
http://www.oranda.demon.co.uk http://www.oranda.demon.co.uk/key.asc
? COPYING
? libtool-1.3b-1.3d.tar.xdp.gz
? libtool-1.3b-1.3d.diff.gz
? patches
? libtool-1.3b.tar.gz
? INSTALL
? mkinstalldirs
? missing
? 2001-04-23-china-nm-p.patch
? libtool-1.3d.tar.gz
? cygwin-patches.tar.bz2
? install-sh
Index: ChangeLog
===================================================================
RCS file: /cvsroot/libtool/libtool/ChangeLog,v
retrieving revision 1.913
diff -u -r1.913 ChangeLog
--- ChangeLog 2001/04/23 21:59:34 1.913
+++ ChangeLog 2001/04/24 17:09:46
@@ -1,3 +1,10 @@
+2001-04-24 Gary V. Vaughan <[EMAIL PROTECTED]>
+
+ From Tim Mooney <[EMAIL PROTECTED]>
+ * tests/Makefile.am (TESTS_ENVIRONMENT): Make sure the *.test
+ scripts get the same make that was used in the top level
+ directory.
+
2001-04-23 Gary V. Vaughan <[EMAIL PROTECTED]>
* doc/PLATFORMS: Updated with more platforms successfully
Index: tests/Makefile.am
===================================================================
RCS file: /cvsroot/libtool/libtool/tests/Makefile.am,v
retrieving revision 1.27
diff -u -r1.27 Makefile.am
--- tests/Makefile.am 2001/04/05 23:09:38 1.27
+++ tests/Makefile.am 2001/04/24 17:09:55
@@ -45,9 +45,9 @@
LIBS = @LIBS@
# Be sure to reexport important environment variables.
-TESTS_ENVIRONMENT = CC="$(CC)" CFLAGS="$(CFLAGS)" CPPFLAGS="$(CPPFLAGS)" \
- LD="$(LD)" LDFLAGS="$(LDFLAGS)" LIBS="$(LIBS)" \
- LN_S="$(LN_S)" NM="$(NM)" RANLIB="$(RANLIB)" \
+TESTS_ENVIRONMENT = MAKE="$(MAKE)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
+ CPPFLAGS="$(CPPFLAGS)" LD="$(LD)" LDFLAGS="$(LDFLAGS)" \
+ LIBS="$(LIBS)" LN_S="$(LN_S)" NM="$(NM)" RANLIB="$(RANLIB)" \
OBJEXT="$(OBJEXT)" EXEEXT="$(EXEEXT)"
EXTRA_DIST = defs $(TESTS)