From: Theodore Ts'o Date: Mon, 12 May 2008 00:34:12 +0000 (-0400) Subject: Fix parallel build problem X-Git-Tag: v1.41-WIP-0617~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b93cb0664e1e118e2d5f6788152cb876ad3f13bc;p=thirdparty%2Fe2fsprogs.git Fix parallel build problem Problem was introduced by commit a4b69b7f1809898c87bdc11502ca258a8f16a220 Thanks to Eric Sandeen from Red Hat for pointing out this problem. Signed-off-by: "Theodore Ts'o" --- diff --git a/lib/Makefile.library b/lib/Makefile.library index 52f28bb5e..7d9e99fb9 100644 --- a/lib/Makefile.library +++ b/lib/Makefile.library @@ -13,7 +13,7 @@ subdirs:: Makefile clean:: @$(RM) -f subdirs -$(LIB)/$(LIBRARY).a $(LIBRARY).a: $(OBJS) +$(LIBRARY).a: $(OBJS) @echo " GEN_LIB $@" @(if test -r $@; then $(RM) -f $@.bak && $(MV) $@ $@.bak; fi) @$(ARGEN) $@ $(OBJS) @@ -21,3 +21,4 @@ $(LIB)/$(LIBRARY).a $(LIBRARY).a: $(OBJS) @$(RM) -f ../$@ @$(LN) $@ ../$@ +$(LIB)/$(LIBRARY).a: $(LIBRARY).a