projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdc7646
)
build: Fix linkage of QEMU_PROG
author
Lluís
<xscript@gmx.net>
Wed, 31 Aug 2011 18:30:30 +0000
(20:30 +0200)
committer
Stefan Hajnoczi
<stefanha@linux.vnet.ibm.com>
Thu, 1 Sep 2011 09:34:53 +0000
(10:34 +0100)
Using '$^' to establish the files to link with will remove any repeated entries
in the list of dependencies.
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Makefile.target
patch
|
blob
|
history
diff --git
a/Makefile.target
b/Makefile.target
index 07af4d47c71a07296a31f7c88870b9ee511708fb..62ddfc9b67c56b0532f44a06ec44484034eaf022 100644
(file)
--- a/
Makefile.target
+++ b/
Makefile.target
@@
-398,7
+398,7
@@
obj-y += $(addprefix ../, $(trace-obj-y))
obj-$(CONFIG_GDBSTUB_XML) += gdbstub-xml.o
$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
- $(call LINK,$
(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)
)
+ $(call LINK,$
^
)
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh