bug #739: install target now depends on all to avoid problem on
authorOliver Kiddle <okiddle@yahoo.co.uk>
Sun, 13 Nov 2005 19:27:37 +0000 (19:27 +0000)
committerOliver Kiddle <okiddle@yahoo.co.uk>
Sun, 13 Nov 2005 19:27:37 +0000 (19:27 +0000)
case-insensitive file systems with the INSTALL file

ChangeLog
Makefile.in

index c996431..fdbf688 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-11-13  Oliver Kiddle  <okiddle@yahoo.co.uk>
+
+       * bug #739: Makefile.in: install target now depends on all to avoid
+       problem on case-insensitive file systems with the INSTALL file
+
 2005-11-10  Josh Bressers  <josh@bress.net>
 
        * Fedora Bug #172838: configure.in: Fix the AC_PATH_PROG default when
index fe8a221..2fa252c 100644 (file)
@@ -88,7 +88,12 @@ all-recursive:
          (cd $$subdir && $(MAKE) $(MAKEDEFS) all) || exit 1; \
        done
 
-install uninstall:
+install: all
+       for subdir in $(SUBDIRS); do \
+         (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
+       done
+
+uninstall:
        for subdir in $(SUBDIRS); do \
          (cd $$subdir && $(MAKE) $(MAKEDEFS) $@) || exit 1; \
        done