diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-03-10 11:17:48 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-04-28 22:14:14 +0200 |
commit | 738e4171de478da2516180c7a139f1b762443618 (patch) | |
tree | bea790b0ceaa133803d7f7f02271ca0b0c26117a /hw/display | |
parent | 2847b46958ab0bd604e1b3fcafba0f5ba4375833 (diff) | |
download | qemu-738e4171de478da2516180c7a139f1b762443618.tar.gz qemu-738e4171de478da2516180c7a139f1b762443618.tar.bz2 qemu-738e4171de478da2516180c7a139f1b762443618.zip |
milkymist: do not modify libs-softmmu
This is better and prepares for the next patch. When we copy
libs_softmmu's value into LIBS with a := assignment, we cannot
anymore modify libs_softmmu in the Makefiles.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/display')
-rw-r--r-- | hw/display/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/display/Makefile.objs b/hw/display/Makefile.objs index e73cb7d8ec..3ea106d9f3 100644 --- a/hw/display/Makefile.objs +++ b/hw/display/Makefile.objs @@ -21,7 +21,7 @@ common-obj-$(CONFIG_ZAURUS) += tc6393xb.o ifeq ($(CONFIG_MILKYMIST_TMU2),y) common-obj-y += milkymist-tmu2.o milkymist-tmu2.o-cflags := $(OPENGL_CFLAGS) -libs_softmmu += $(OPENGL_LIBS) +milkymist-tmu2.o-libs += $(OPENGL_LIBS) endif obj-$(CONFIG_OMAP) += omap_dss.o |