diff options
author | SeokYeon Hwang <syeon.hwang@samsung.com> | 2013-05-21 14:40:10 +0900 |
---|---|---|
committer | SeokYeon Hwang <syeon.hwang@samsung.com> | 2013-05-21 14:42:32 +0900 |
commit | fe66862a92f712d0ee7cc1a59c0315ccb59406a1 (patch) | |
tree | 790f48060fb9deaedc15769ea2dd51be38b6c4d5 /Makefile.target | |
parent | 92a07a2d92dcc56b1bf910644610f54a7446e466 (diff) | |
download | qemu-fe66862a92f712d0ee7cc1a59c0315ccb59406a1.tar.gz qemu-fe66862a92f712d0ee7cc1a59c0315ccb59406a1.tar.bz2 qemu-fe66862a92f712d0ee7cc1a59c0315ccb59406a1.zip |
Fix linking error on Ubuntu 13.04
Change-Id: Ia75046455fc439a294b0aaf3ecfd51c435749c8c
Signed-off-by: SeokYeon Hwang <syeon.hwang@samsung.com>
Diffstat (limited to 'Makefile.target')
-rwxr-xr-x | Makefile.target | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index a0175dfcdb..c6dc96846a 100755 --- a/Makefile.target +++ b/Makefile.target @@ -303,7 +303,9 @@ CHECK_GL_LDFLAGS = CHECK_GL_TARGET = ifdef CONFIG_LINUX CHECK_GL_OBJS += gloffscreen_xcomposite.o -CHECK_GL_LDFLAGS += -lGL -lXcomposite -lXext -lglib-2.0 +#CHECK_GL_LDFLAGS += -lGL -lXcomposite -lXext -lglib-2.0 +# Fix linking error on Ubuntu 13.04 +CHECK_GL_LDFLAGS += -lGL -lXcomposite -lX11 -lXext -lglib-2.0 CHECK_GL_TARGET = check-gl endif ifdef CONFIG_WIN32 |