diff options
author | Cyril Brulebois <kibi@debian.org> | 2010-11-12 12:18:59 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-12-07 09:24:16 -0800 |
commit | 780754050bc9cb1489f92a2a890ab5665e3e6358 (patch) | |
tree | 39c55d9bd154f259571cfda6e23e40bff500cdbe /hw/dmx | |
parent | 14983286c489ea1ec6ba4fadbeaec5c2d2ee34e1 (diff) |
Fix GLX_LIBS vs. DMX_LIBS order.
If glxproxy needs symbols which aren't pulled in by dmx itself, glxproxy
fails to link because of undefined references.
Signed-off-by: Cyril Brulebois <kibi@debian.org>
Reviewed-by: Julien Cristau <jcristau@debian.org>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'hw/dmx')
-rw-r--r-- | hw/dmx/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dmx/Makefile.am b/hw/dmx/Makefile.am index 0d0634628..5c16dc330 100644 --- a/hw/dmx/Makefile.am +++ b/hw/dmx/Makefile.am @@ -81,8 +81,8 @@ Xdmx_SOURCES = dmx.c \ #endif XDMX_LIBS = \ - @XDMX_LIBS@ \ $(GLX_LIBS) \ + @XDMX_LIBS@ \ input/libdmxinput.a \ config/libdmxconfig.a |