diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-04-17 16:26:45 +0200 |
---|---|---|
committer | Edgar E. Iglesias <edgar.iglesias@gmail.com> | 2013-04-18 14:12:31 +0200 |
commit | 2b6b7099fb17ab9efa51c430e348ee88d6fbcef2 (patch) | |
tree | 425233532df334b0ab9fed296e6292311d46445c /hw | |
parent | f544a488e55d3c504b65b6209199a977df9b24b9 (diff) | |
download | qemu-2b6b7099fb17ab9efa51c430e348ee88d6fbcef2.tar.gz qemu-2b6b7099fb17ab9efa51c430e348ee88d6fbcef2.tar.bz2 qemu-2b6b7099fb17ab9efa51c430e348ee88d6fbcef2.zip |
configure: eliminate target_libs_softmmu
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/display/Makefile.objs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/display/Makefile.objs b/hw/display/Makefile.objs index 3f7027d46b..6e9fb3b695 100644 --- a/hw/display/Makefile.objs +++ b/hw/display/Makefile.objs @@ -18,8 +18,9 @@ common-obj-$(CONFIG_FRAMEBUFFER) += framebuffer.o common-obj-$(CONFIG_MILKYMIST) += milkymist-vgafb.o common-obj-$(CONFIG_ZAURUS) += tc6393xb.o -ifeq ($(CONFIG_GLX),y) -common-obj-$(CONFIG_MILKYMIST) += milkymist-tmu2.o +ifeq ($(CONFIG_MILKYMIST_TMU2),y) +common-obj-y += milkymist-tmu2.o +libs_softmmu += $(GLX_LIBS) endif obj-$(CONFIG_OMAP) += omap_dss.o |