From: Hubert Jasudowicz Date: Tue, 18 Aug 2020 19:29:48 +0000 (+0200) Subject: tools/firmware: Fix typo in uninstall target X-Git-Tag: archive/raspbian/4.16.0+51-g0941d6cb-1+rpi1~2^2~42^2~1738 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a623841b85bde261d0627676c7cff7745f107f3c;p=xen.git tools/firmware: Fix typo in uninstall target When ipxe.bin is missing, make uninstall will fail due to wrong switch (-r) passed to rm command. Replace it with -f. Signed-off-by: Hubert Jasudowicz Reviewed-by: Bertrand Marquis Acked-by: Wei Liu --- diff --git a/tools/firmware/Makefile b/tools/firmware/Makefile index 809a5fd025..1f27117794 100644 --- a/tools/firmware/Makefile +++ b/tools/firmware/Makefile @@ -72,7 +72,7 @@ ifeq ($(CONFIG_OVMF),y) rm -f $(INST_DIR)/ovmf.bin endif ifeq ($(CONFIG_IPXE),y) - rm -r $(INST_DIR)/ipxe.bin + rm -f $(INST_DIR)/ipxe.bin endif ifeq ($(CONFIG_PV_SHIM),y) rm -f $(INST_DIR)/xen-shim