Mesa (master): xatracker: fix the build of a 32bit lib on a 64bit os

Zack Rusin zack at kemper.freedesktop.org
Thu Apr 5 04:22:21 UTC 2012


Module: Mesa
Branch: master
Commit: 129d5138d63697a9812d531895293313dfad6d57
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=129d5138d63697a9812d531895293313dfad6d57

Author: Alexandre Demers <alexandre.f.demers at gmail.com>
Date:   Thu Apr  5 00:18:25 2012 -0400

xatracker: fix the build of a 32bit lib on a 64bit os

we were missing cflags.

Signed-off-by: Zack Rusin <zackr at vmware.com>

---

 src/gallium/state_trackers/xa/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/state_trackers/xa/Makefile b/src/gallium/state_trackers/xa/Makefile
index b42e619..85223f8 100644
--- a/src/gallium/state_trackers/xa/Makefile
+++ b/src/gallium/state_trackers/xa/Makefile
@@ -39,7 +39,7 @@ default: $(XA_LIB_NAME)
 
 # Make the library
 $(XA_LIB_NAME): depend $(OBJECTS)
-	$(CC) -r -nostdlib -o $(XA_LIB_NAME) $(OBJECTS)
+	$(CC) -r -nostdlib -o $(XA_LIB_NAME) $(OBJECTS) $(CFLAGS)
 
 install: FORCE
 




More information about the mesa-commit mailing list