summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2008-10-10 14:00:46 -0400
committerTheodore Ts'o <tytso@mit.edu>2008-10-12 23:12:22 -0400
commitf0eae15c36d3334c0461ba3f2d4d401a954902ab (patch)
tree6ab9d90e5e10c599f3a084d44327b40452bb4cca
parent18f734301012301efbeb87a7c67f6cf82f1721d7 (diff)
downloade2fsprogs-f0eae15c36d3334c0461ba3f2d4d401a954902ab.tar.gz
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" <tytso@mit.edu>
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index ffb12241..728d3a57 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)