From 129d5138d63697a9812d531895293313dfad6d57 Mon Sep 17 00:00:00 2001 From: Alexandre Demers Date: Thu, 5 Apr 2012 00:18:25 -0400 Subject: [PATCH] xatracker: fix the build of a 32bit lib on a 64bit os we were missing cflags. Signed-off-by: Zack Rusin --- src/gallium/state_trackers/xa/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/state_trackers/xa/Makefile b/src/gallium/state_trackers/xa/Makefile index b42e6197045..85223f8c0dc 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 -- 2.30.2