From: Michael S. Tsirkin Date: Mon, 7 Dec 2009 19:04:52 +0000 (+0200) Subject: qemu: delete rule target on error X-Git-Tag: v0.12.0-rc2~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=90f445e1c9a2ce05d0b68c3159892181cdd600d6;p=thirdparty%2Fqemu.git qemu: delete rule target on error Instruct make to remove any rule target on error. This prevetns situation where there was an error during build but generated file still stays behind. Signed-off-by: Michael S. Tsirkin Signed-off-by: Anthony Liguori (cherry picked from commit 7dbbbb0c9e4313cf2d2f6559b7899259fb09eb63) --- diff --git a/rules.mak b/rules.mak index 16713bacd75..5d9f684c24b 100644 --- a/rules.mak +++ b/rules.mak @@ -47,3 +47,6 @@ cc-option = $(if $(shell $(CC) $1 $2 -S -o /dev/null -xc /dev/null \ %.h-timestamp: %.mak $(call quiet-command, sh $(SRC_PATH)/create_config < $< > $@, " GEN $*.h") @cmp $@ $*.h >/dev/null 2>&1 || cp $@ $*.h + +# will delete the target of a rule if commands exit with a nonzero exit status +.DELETE_ON_ERROR: