* [PATCH][STABLE-0.11] qemu-kvm: Fix optionrom install from out-of-tree builds
@ 2009-09-02 15:54 Jan Kiszka
2009-09-02 16:27 ` [PATCH v2][STABLE-0.11] " Jan Kiszka
0 siblings, 1 reply; 2+ messages in thread
From: Jan Kiszka @ 2009-09-02 15:54 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: Avi Kivity, kvm-devel
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
Makefile | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile
index d1de788..2217956 100644
--- a/Makefile
+++ b/Makefile
@@ -306,7 +306,7 @@ ifneq ($(BLOBS),)
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
fi \
; if [ -f $(SRC_PATH)/pc-bios/optionrom/$$x ];then \
- $(INSTALL_DATA) $(SRC_PATH)/pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \
+ $(INSTALL_DATA) pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \
fi \
done
endif
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH v2][STABLE-0.11] qemu-kvm: Fix optionrom install from out-of-tree builds
2009-09-02 15:54 [PATCH][STABLE-0.11] qemu-kvm: Fix optionrom install from out-of-tree builds Jan Kiszka
@ 2009-09-02 16:27 ` Jan Kiszka
0 siblings, 0 replies; 2+ messages in thread
From: Jan Kiszka @ 2009-09-02 16:27 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: Avi Kivity, kvm-devel
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
---
v2: Removed another incorrect reference to $(SRC_PATH)
Makefile | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index d1de788..f2b8885 100644
--- a/Makefile
+++ b/Makefile
@@ -305,8 +305,8 @@ ifneq ($(BLOBS),)
if [ -f $(SRC_PATH)/pc-bios/$$x ];then \
$(INSTALL_DATA) $(SRC_PATH)/pc-bios/$$x "$(DESTDIR)$(datadir)"; \
fi \
- ; if [ -f $(SRC_PATH)/pc-bios/optionrom/$$x ];then \
- $(INSTALL_DATA) $(SRC_PATH)/pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \
+ ; if [ -f pc-bios/optionrom/$$x ];then \
+ $(INSTALL_DATA) pc-bios/optionrom/$$x "$(DESTDIR)$(datadir)"; \
fi \
done
endif
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-09-02 16:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-02 15:54 [PATCH][STABLE-0.11] qemu-kvm: Fix optionrom install from out-of-tree builds Jan Kiszka
2009-09-02 16:27 ` [PATCH v2][STABLE-0.11] " Jan Kiszka
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).