From 30cccc9b0208af707acf4c7988e4b0deabee574e Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Tue, 28 May 2019 10:23:06 +0200 Subject: [PATCH] Makefile: Drop bogus cleaning of $(ALL_SUBDIRS)/qemu-options.def MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When commit df2943ba3c7 moved "rm -f qemu-options.def" from distclean to clean, it also added "rm -f $$d/qemu-options.def" to the for d in $(ALL_SUBDIRS) loop. That file doesn't exist. Remove the mistaken rm. Signed-off-by: Markus Armbruster Reviewed-by: Richard Henderson Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé Message-Id: <20190528082308.22032-3-armbru@redhat.com> --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 0f2cb271a2..cf4f34e45b 100644 --- a/Makefile +++ b/Makefile @@ -678,7 +678,6 @@ clean: rm -rf qga/qapi-generated for d in $(ALL_SUBDIRS); do \ if test -d $$d; then $(MAKE) -C $$d $@ || exit 1; fi; \ - rm -f $$d/qemu-options.def; \ done rm -f config-all-devices.mak