diff options
author | Alexandre Demers <[email protected]> | 2012-04-05 00:18:25 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2012-04-05 00:18:25 -0400 |
commit | 129d5138d63697a9812d531895293313dfad6d57 (patch) | |
tree | 85822d2cd2975776ef386d3b02619e30ef01c1b7 /src | |
parent | 34e53adc51ade8d53d74b6ae35bec90f1a6b9b29 (diff) |
xatracker: fix the build of a 32bit lib on a 64bit os
we were missing cflags.
Signed-off-by: Zack Rusin <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | 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 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 |