Fixed Savannah bug #15641.

This commit is contained in:
Boris Kolpackov
2006-02-08 17:29:07 +00:00
parent ce9c63b32b
commit d0c4e92f11
5 changed files with 36 additions and 2 deletions

View File

@@ -108,4 +108,22 @@ Ok done',
512);
# Test for Savannah bug #15641.
#
run_make_test('
.PHONY: all
all:; @:
-include foo.d
foo.d: comp
@echo building $@
comp: mod_a.o mod_b.o; @:
mod_a.o mod_b.o:
@exit 1
', '-j2', '');
1;