Whamcloud - gitweb
git://git.whamcloud.com
/
tools
/
e2fsprogs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38361bb
)
libss: Fix parallel build failure
author
Theodore Ts'o
<tytso@mit.edu>
Sun, 2 Dec 2007 10:52:40 +0000
(
05:52
-0500)
committer
Theodore Ts'o
<tytso@mit.edu>
Sun, 2 Dec 2007 10:52:40 +0000
(
05:52
-0500)
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" <tytso@mit.edu>
lib/ss/Makefile.in
patch
|
blob
|
history
diff --git
a/lib/ss/Makefile.in
b/lib/ss/Makefile.in
index
29e0583
..
276acc3
100644
(file)
--- 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