From 3a0d5d396b2801682ad75acb8617d3a02895edba Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Mon, 17 May 2010 23:48:52 -0400 Subject: [PATCH] Fix dpkg-buildpackage -j2 Add a dependency on subs to all-libs-recursive and all-progs-recursive to dpkg-buildpackage -j2, since it builds make target 'libs' explicitly, and we need to make sure the 'subs' target is run first. Addresses-Debian-Bug: #563487 Signed-off-by: "Theodore Ts'o" --- Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 45f2972..5708efd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -33,8 +33,9 @@ subs: $(DEP_SUBSTITUTE) @(if test -d lib/et ; then cd lib/et && $(MAKE) compile_et; fi) @(if test -d lib/ext2fs ; then cd lib/ext2fs && $(MAKE) ext2_err.h; fi) -progs: subs all-progs-recursive -libs: subs all-libs-recursive +progs: all-progs-recursive +libs: all-libs-recursive +all-progs-recursive all-libs-recursive: subs e2fsprogs.spec: $(DEP_SUBSTITUTE) e2fsprogs.spec.in cd $(top_builddir); CONFIG_FILES=./e2fsprogs.spec ./config.status -- 1.8.3.1