Module: Mesa Branch: master Commit: ab6825b3e3fd04564b7840e945fa32b0a7b3c0c2 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ab6825b3e3fd04564b7840e945fa32b0a7b3c0c2
Author: Török Edvin <[email protected]> Date: Thu Feb 25 09:02:43 2010 -0700 progs/glsl: add ARCH_FLAGS to LDLIBS Allows building 32-bit demos on 64-bit Debian host. Signed-off-by: Brian Paul <[email protected]> --- progs/glsl/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/progs/glsl/Makefile b/progs/glsl/Makefile index 8928c83..aaa54cb 100644 --- a/progs/glsl/Makefile +++ b/progs/glsl/Makefile @@ -16,7 +16,7 @@ LIBS = -L$(TOP)/$(LIB_DIR) -l$(GLUT_LIB) -l$(GLEW_LIB) -l$(GLU_LIB) \ # using : to avoid APP_CC pointing to CC loop CC := $(APP_CC) CFLAGS := -I$(INCDIR) $(CFLAGS) -LDLIBS = $(LIBS) +LDLIBS = $(LIBS) $(ARCH_FLAGS) PROG_SOURCES = \ array.c \ _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
