]> git.marmaro.de Git - mmh/commitdiff
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 c9964316a738405daa01104aae47a81ae3747735..fdbf688c90df30c9a233f08e4ff1b169434fd088 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 fe8a221bece744655f9449ccf29b460e3f202eff..2fa252c72d2b674d9a19c053adb676c7d5c48bbb 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