Revisión | 177cd674d6203d3c1a98e170ea56c5a904ac4ce8 (tree) |
---|---|
Tiempo | 2019-08-03 16:52:32 |
Autor | Olaf Hering <olaf@aepf...> |
Commiter | Philippe Mathieu-Daudé |
Makefile: remove DESTDIR from firmware file content
The resulting firmware files should only contain the runtime path.
Fixes commit 26ce90fde5c ("Makefile: install the edk2 firmware images
and their descriptors")
Signed-off-by: Olaf Hering <olaf@aepfle.de>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <20190530192812.17637-1-olaf@aepfle.de>
Fixes: https://bugs.launchpad.net/qemu/+bug/1838703
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
@@ -881,7 +881,7 @@ ifneq ($(DESCS),) | ||
881 | 881 | $(INSTALL_DIR) "$(DESTDIR)$(qemu_datadir)/firmware" |
882 | 882 | set -e; tmpf=$$(mktemp); trap 'rm -f -- "$$tmpf"' EXIT; \ |
883 | 883 | for x in $(DESCS); do \ |
884 | - sed -e 's,@DATADIR@,$(DESTDIR)$(qemu_datadir),' \ | |
884 | + sed -e 's,@DATADIR@,$(qemu_datadir),' \ | |
885 | 885 | "$(SRC_PATH)/pc-bios/descriptors/$$x" > "$$tmpf"; \ |
886 | 886 | $(INSTALL_DATA) "$$tmpf" \ |
887 | 887 | "$(DESTDIR)$(qemu_datadir)/firmware/$$x"; \ |