From: Daiki Ueno Date: Mon, 14 Jul 2014 02:24:30 +0000 (+0900) Subject: build: Fix race in post-install removal of *.a X-Git-Tag: v0.19.2~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3e1f8e3527a807c412dca3a4527bb16c5927dfc;p=thirdparty%2Fgettext.git build: Fix race in post-install removal of *.a There was an implicit dependency between the prerequisites of install-exec-local, which may have caused error with make -jN. Use install-exec-hook to remove the dependency. Reported by Christian Weisgerber in: . * Makefile.am (install-exec-local): Remove. (install-exec-hook): New rule, depend on install-exec-clean. --- diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 111e06081..c68deb578 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,3 +1,14 @@ +2014-07-14 Daiki Ueno + + build: Fix race in post-install removal of *.a + There was an implicit dependency between the prerequisites of + install-exec-local, which may have caused error with make -jN. + Use install-exec-hook to remove the dependency. + Reported by Christian Weisgerber in: + . + * Makefile.am (install-exec-local): Remove. + (install-exec-hook): New rule, depend on install-exec-clean. + 2014-07-11 Daiki Ueno c: Fix empty string literal handling