-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Keith Marshall on 9/30/2008 3:24 PM: >> Sounds like the case-insensitive make behavior is still biting us, >> then (which we previously determined only afflicts in-place >> builds); I guess Stepan's patch didn't work as expected [1],[2]. > >> Also, does this patch help? >> ... > > Yes; it resolves the issue I have observed, allowing the in-place > build to complete successfully, (both `make all' and `make install'). > > Thanks.
Good to hear. I'm installing this: - -- Don't work too hard, make some time for fun as well! Eric Blake [EMAIL PROTECTED] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkjqxssACgkQ84KuGfSFAYBxNgCfUuJoTfF+nkSZHcZ9MqJx3Sbb 8sUAnjdt0BMBydD8WN74RC+Tiz2dvOva =fcTQ -----END PGP SIGNATURE-----
From c1a0d34e262ce8179fe3386041e59c263ea3f52b Mon Sep 17 00:00:00 2001 From: Eric Blake <[EMAIL PROTECTED]> Date: Mon, 6 Oct 2008 20:06:00 -0600 Subject: [PATCH] Fix build with case-insensitive make, again. * Makefile.am (pkgdata_DATA): Protect by MAKE_CASE_SENSITIVE. Reported via Keith Marshall, originally by newthinker in <http://thread.gmane.org/gmane.comp.gnu.mingw.user/27725>. Signed-off-by: Eric Blake <[EMAIL PROTECTED]> --- ChangeLog | 7 +++++++ Makefile.am | 2 +- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 049fd32..0cadf4a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-10-06 Eric Blake <[EMAIL PROTECTED]> + + Fix build with case-insensitive make, again. + * Makefile.am (pkgdata_DATA): Protect by MAKE_CASE_SENSITIVE. + Reported via Keith Marshall, originally by newthinker in + <http://thread.gmane.org/gmane.comp.gnu.mingw.user/27725>. + 2008-10-06 Bruno Haible <[EMAIL PROTECTED]> Warn about /usr/ucb on Solaris. diff --git a/Makefile.am b/Makefile.am index bd4b114..4da4b29 100644 --- a/Makefile.am +++ b/Makefile.am @@ -34,10 +34,10 @@ EXTRA_DIST = ChangeLog.0 ChangeLog.1 ChangeLog.2 \ ## INSTALL. ## ## --------- ## -pkgdata_DATA = $(srcdir)/INSTALL AM_MAKEINFOFLAGS = --no-headers --no-validate --no-split if MAKE_CASE_SENSITIVE +pkgdata_DATA = $(srcdir)/INSTALL MAINTAINERCLEANFILES = $(srcdir)/INSTALL $(srcdir)/INSTALL: $(top_srcdir)/doc/install.texi -- 1.6.0.2
