diff options
author | Theodore Ts'o <tytso@mit.edu> | 2008-10-10 14:00:46 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2008-10-12 23:12:22 -0400 |
commit | f0eae15c36d3334c0461ba3f2d4d401a954902ab (patch) | |
tree | 6ab9d90e5e10c599f3a084d44327b40452bb4cca | |
parent | 18f734301012301efbeb87a7c67f6cf82f1721d7 (diff) | |
download | e2fsprogs-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.in | 2 |
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) |