diff options
author | Tormod Volden <[email protected]> | 2009-04-30 16:52:56 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-04-30 16:52:56 -0600 |
commit | 9cb3cdec76b679f15c591955084bd48e91a32142 (patch) | |
tree | ec580330cc47f52f7ebba5580ab7765098c7a0a7 /src/gallium/winsys/egl_xlib | |
parent | 60927f97f7b0df9ce352d0c8b4b973e97d53f20a (diff) |
mesa: Prepend "-Wl," to linking options
Let mklib ignore -Wl options inside the object list when building
static libraries
Diffstat (limited to 'src/gallium/winsys/egl_xlib')
-rw-r--r-- | src/gallium/winsys/egl_xlib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/winsys/egl_xlib/Makefile b/src/gallium/winsys/egl_xlib/Makefile index 02ac47caa4e..8646ee3b527 100644 --- a/src/gallium/winsys/egl_xlib/Makefile +++ b/src/gallium/winsys/egl_xlib/Makefile @@ -60,7 +60,7 @@ $(TOP)/$(LIB_DIR)/$(DRIVER_NAME): $(WINSYS_OBJECTS) $(LIBS) -noprefix \ -install $(TOP)/$(LIB_DIR) \ $(MKLIB_OPTIONS) $(WINSYS_OBJECTS) \ - --whole-archive $(LIBS) --no-whole-archive + -Wl,--whole-archive $(LIBS) -Wl,--no-whole-archive depend: $(ALL_SOURCES) |