From: Oliver Kiddle Date: Sun, 13 Nov 2005 19:27:37 +0000 (+0000) Subject: bug #739: install target now depends on all to avoid problem on X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/59f485ee6d6733207b77e2d5ab14823b8d69b7cd?ds=sidebyside;hp=37bc2a48e0613d19e507e476b0e0de919f2b0a26 bug #739: install target now depends on all to avoid problem on case-insensitive file systems with the INSTALL file --- diff --git a/ChangeLog b/ChangeLog index c9964316..fdbf688c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-11-13 Oliver Kiddle + + * 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 * Fedora Bug #172838: configure.in: Fix the AC_PATH_PROG default when diff --git a/Makefile.in b/Makefile.in index fe8a221b..2fa252c7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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