diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-07-16 07:45:15 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2013-07-16 07:45:15 +0000 |
commit | 0bf477ff66fe78bfa6db1866aa5eb8c5ba173328 (patch) | |
tree | 8c89177c9d11cf9b155b215da923b00c1fe4237c /Build/source/texk | |
parent | e1631d84c22eee1553513440376ec06ec68e43c1 (diff) |
build system: Avoid more 'parallel make' problems
git-svn-id: svn://tug.org/texlive/trunk@31209 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk')
-rw-r--r-- | Build/source/texk/kpathsea/Makefile.in | 5 | ||||
-rw-r--r-- | Build/source/texk/ptexenc/Makefile.in | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/Build/source/texk/kpathsea/Makefile.in b/Build/source/texk/kpathsea/Makefile.in index 6dfa18d4ddf..97fbc457996 100644 --- a/Build/source/texk/kpathsea/Makefile.in +++ b/Build/source/texk/kpathsea/Makefile.in @@ -2283,7 +2283,7 @@ uninstall-bin-links: install-exec-hook: install-bin-links uninstall-hook: uninstall-bin-links -rebuild.stamp: +rebuild.stamp: $(rebuild_target) echo timestamp >$@ .PHONY: rebuild @@ -2297,8 +2297,7 @@ rebuild: $(rebuild_prereq) if test -f rebuild.stamp; then :; else \ $$dry trap 'rm -rf rebuild.lock' 1 2 13 15; \ if $$dry mkdir rebuild.lock 2>/dev/null; then \ - $(MAKE) $(AM_MAKEFLAGS) $(rebuild_target) \ - && echo timestamp >rebuild.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) rebuild.stamp; \ $$dry rmdir rebuild.lock; \ else \ while test -d rebuild.lock && test -z "$$dry"; do sleep 1; done; \ diff --git a/Build/source/texk/ptexenc/Makefile.in b/Build/source/texk/ptexenc/Makefile.in index 1aca1351c85..9712115a71f 100644 --- a/Build/source/texk/ptexenc/Makefile.in +++ b/Build/source/texk/ptexenc/Makefile.in @@ -936,7 +936,7 @@ uninstall-am: uninstall-libLTLIBRARIES uninstall-nobase_includeHEADERS $(libptexenc_la_OBJECTS): $(KPATHSEA_DEPEND) @KPATHSEA_RULE@ -rebuild.stamp: +rebuild.stamp: $(rebuild_target) echo timestamp >$@ .PHONY: rebuild @@ -950,8 +950,7 @@ rebuild: $(rebuild_prereq) if test -f rebuild.stamp; then :; else \ $$dry trap 'rm -rf rebuild.lock' 1 2 13 15; \ if $$dry mkdir rebuild.lock 2>/dev/null; then \ - $(MAKE) $(AM_MAKEFLAGS) $(rebuild_target) \ - && echo timestamp >rebuild.stamp; \ + $(MAKE) $(AM_MAKEFLAGS) rebuild.stamp; \ $$dry rmdir rebuild.lock; \ else \ while test -d rebuild.lock && test -z "$$dry"; do sleep 1; done; \ |