diff options
author | Jeroen Roovers <jer@gentoo.org> | 2011-11-15 20:43:45 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2011-11-15 20:43:45 +0000 |
commit | f1d09c21e45d178ae94b7eae9679ab87aad7a3c6 (patch) | |
tree | 61136cc5e6858e4ca391df3a74d5df3228e80593 /net-analyzer/argus/files | |
parent | Version bump. (diff) | |
download | gentoo-2-f1d09c21e45d178ae94b7eae9679ab87aad7a3c6.tar.gz gentoo-2-f1d09c21e45d178ae94b7eae9679ab87aad7a3c6.tar.bz2 gentoo-2-f1d09c21e45d178ae94b7eae9679ab87aad7a3c6.zip |
Do not continue when a sub-make errors (bug #380953).
(Portage version: 2.2.0_alpha74/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/argus/files')
-rw-r--r-- | net-analyzer/argus/files/argus-3.0.5-Makefile.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/net-analyzer/argus/files/argus-3.0.5-Makefile.patch b/net-analyzer/argus/files/argus-3.0.5-Makefile.patch new file mode 100644 index 000000000000..e4c3e1981c2f --- /dev/null +++ b/net-analyzer/argus/files/argus-3.0.5-Makefile.patch @@ -0,0 +1,13 @@ +Do not continue when a sub-make errors (bug #380953). + +--- a/Makefile.in ++++ b/Makefile.in +@@ -55,7 +55,7 @@ + .PHONY: install installdirs all + + all: force +- @-for d in $(DIRS);\ ++ @for d in $(DIRS);\ + do \ + (cd $$d; echo "### Making in" `pwd`;\ + $(MAKE) $(MFLAGS) ;\ |