From: David Given Date: Sun, 9 Nov 2014 17:47:51 +0000 (+0100) Subject: Fixed a parallel build race condition (forgot to declare a dependency to X-Git-Tag: release-6-0-pre-5~15 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=2271bcd0a705b67c4d30cfa3b32cfcb5c71be8ba;p=ack.git Fixed a parallel build race condition (forgot to declare a dependency to the makefile). --- diff --git a/util/ncgg/build.mk b/util/ncgg/build.mk index c3a7f31fa..aaa81769f 100644 --- a/util/ncgg/build.mk +++ b/util/ncgg/build.mk @@ -26,7 +26,7 @@ $(call cfile, $D/var.c) $(call cfile, $D/hall.c) $(eval CLEANABLES += $(OBJDIR)/$D/enterkeyw.c) -$(OBJDIR)/$D/enterkeyw.c: $D/cvtkeywords $D/keywords +$(OBJDIR)/$D/enterkeyw.c: $D/cvtkeywords $D/keywords $(OBJDIR)/$D/y.tab.h @echo KEYWORDS $$@ @mkdir -p $$(dir $$@) $(hide) cd $$(dir $$@) && sh $(abspath $D/cvtkeywords) $(abspath $D/keywords)