diff options
author | Chia-I Wu <[email protected]> | 2010-04-02 10:27:57 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-04-02 10:32:36 +0800 |
commit | 154d9242de865c3cca8e597be911d69a53077ab1 (patch) | |
tree | f7c20d0986d3e25e140cfcd57c689f7e9c64085b | |
parent | 2b4d8616f581a36ed98a491ac1ec14be69d37511 (diff) |
st/vega: Do not depend on libm.
This fixes the "no rule to make target -lm" error on darwin, reported by
Jeremy Huddleston.
-rw-r--r-- | src/gallium/state_trackers/vega/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/vega/Makefile b/src/gallium/state_trackers/vega/Makefile index 037d8dc911a..f6d1ea029ce 100644 --- a/src/gallium/state_trackers/vega/Makefile +++ b/src/gallium/state_trackers/vega/Makefile @@ -42,7 +42,8 @@ VG_SOURCES = \ VG_OBJECTS = $(VG_SOURCES:.c=.o) -VG_LIBS = $(GALLIUM_AUXILIARIES) -lm +VG_LIBS = $(GALLIUM_AUXILIARIES) +VG_LIB_DEPS = $(EXTRA_LIB_PATH) -lm ### Include directories @@ -64,7 +65,7 @@ $(TOP)/$(LIB_DIR)/$(VG_LIB_NAME): $(VG_OBJECTS) $(VG_LIBS) -minor $(VG_MINOR) \ -patch $(VG_TINY) \ -install $(TOP)/$(LIB_DIR) \ - $(VG_OBJECTS) $(VG_LIBS) + $(VG_OBJECTS) $(VG_LIBS) $(VG_LIB_DEPS) ###################################################################### # Generic stuff |