From f0eae15c36d3334c0461ba3f2d4d401a954902ab Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Fri, 10 Oct 2008 14:00:46 -0400 Subject: [PATCH] Fix parallel build problem with util/subst Make sure util/subst is built before trying to build lib/et Addresses-Sourceforge-Bug: #2143281 Signed-off-by: "Theodore Ts'o" --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index ffb1224..728d3a5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -25,7 +25,7 @@ all:: subs $(MAKE) progs $(MAKE) docs -subs: +subs: $(DEP_SUBSTITUTE) @for i in $(SUBS) ; do if test -d `dirname $$i` ; \ then $(MAKE) $$i || exit $$? ; fi ; done @(if test -d lib/et ; then cd lib/et && $(MAKE) compile_et; fi) -- 1.8.3.1