diff options
author | Matt Turner <[email protected]> | 2012-01-31 11:54:24 -0500 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-01-31 12:04:19 -0500 |
commit | f53e7e981ef35ab64a084c8da6c67bd2d230fe33 (patch) | |
tree | ee60014397a1d1b365c39766caa086aac6c01f92 /src/mesa/sources.mak | |
parent | d36f89c8cfb3776368f8acef46514421f454205c (diff) |
Make sure libGL.so links with libglsl
Can't link against *.la files if we're not using libtool to link.
Fixes undefined symbol: _ZN23ir_hierarchical_visitor5visitEP11ir_variable
Diffstat (limited to 'src/mesa/sources.mak')
-rw-r--r-- | src/mesa/sources.mak | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak index 07688906faa..aadbf41550a 100644 --- a/src/mesa/sources.mak +++ b/src/mesa/sources.mak @@ -368,7 +368,7 @@ COMMON_DRIVER_OBJECTS = $(COMMON_DRIVER_SOURCES:.c=.o) ### Other archives/libraries GLSL_LIBS = \ - $(TOP)/src/glsl/libglsl.la + $(TOP)/src/glsl/.libs/$(GLSL_LIB_NAME) ### Include directories |