diff options
author | Emil Velikov <[email protected]> | 2014-03-11 00:01:33 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-03-31 12:21:36 +0100 |
commit | 46ae286b9d420702d46475ca43394ee36a087dab (patch) | |
tree | 71af4c1c325ecb8253ca2f5bd36c07aad159dc92 /src/mesa/drivers/x11/Makefile.am | |
parent | e62b7d38a1d9901e1c8b2cb79b815835cf767740 (diff) |
drivers/x11: GL_LIB_DEPS is not a linker/libtool flag, add it to LIBADD
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/x11/Makefile.am')
-rw-r--r-- | src/mesa/drivers/x11/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/drivers/x11/Makefile.am b/src/mesa/drivers/x11/Makefile.am index b10e86f534a..27343d15791 100644 --- a/src/mesa/drivers/x11/Makefile.am +++ b/src/mesa/drivers/x11/Makefile.am @@ -58,10 +58,11 @@ GL_PATCH = 0 lib@GL_LIB@_la_LIBADD = \ $(top_builddir)/src/mesa/libmesa.la \ - $(top_builddir)/src/mapi/glapi/libglapi.la + $(top_builddir)/src/mapi/glapi/libglapi.la \ + $(GL_LIB_DEPS) + lib@GL_LIB@_la_LDFLAGS = \ -version-number $(GL_MAJOR):$(GL_MINOR):$(GL_PATCH) \ - -no-undefined \ - $(GL_LIB_DEPS) + -no-undefined include $(top_srcdir)/install-lib-links.mk |