From 1113bf706fb9671187ae1afa3bb8b877731203a0 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sun, 2 Dec 2007 05:52:40 -0500 Subject: [PATCH] libss: Fix parallel build failure A missing dependency on ss_err.h meant that std_rqs.o could fail when e2fsprogs was being built using make -j. Thanks to Robert Kerr for reporting this bug. Addresses-Sourceforge-Bug: #1842331 Signed-off-by: "Theodore Ts'o" --- lib/ss/Makefile.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ss/Makefile.in b/lib/ss/Makefile.in index 29e0583..276acc3 100644 --- a/lib/ss/Makefile.in +++ b/lib/ss/Makefile.in @@ -99,6 +99,8 @@ std_rqs.c: std_rqs.ct mk_cmds @echo " MK_CMDS $@" @DIR=$(srcdir) $(MK_CMDS) $(srcdir)/std_rqs.ct +std_rqs.o: ss_err.h + test_cmd.c: test_cmd.ct mk_cmds @echo " MK_CMDS $@" @DIR=$(srcdir) $(MK_CMDS) $(srcdir)/test_cmd.ct -- 1.8.3.1