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-Tag: RELEASE_1_2~18 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=59f485ee6d6733207b77e2d5ab14823b8d69b7cd;ds=sidebyside 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 c996431..fdbf688 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 fe8a221..2fa252c 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