diff options
author | Eric Anholt <[email protected]> | 2004-06-01 00:06:14 +0000 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2004-06-01 00:06:14 +0000 |
commit | 2fb5d15ce38d8d298c4fbf8c0bb336154a314b13 (patch) | |
tree | 51f1626c3f3054216174bba640ecb5425ba80647 /src/mesa/drivers/dri/fb | |
parent | c1311d80bd0b2661581bb510c18780d7603cd014 (diff) |
Build fixing for FreeBSD. GNU make is installed as gmake, so make a MAKE
variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS
more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more
compatible "> /dev/null 2>&1".
Diffstat (limited to 'src/mesa/drivers/dri/fb')
-rw-r--r-- | src/mesa/drivers/dri/fb/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/fb/Makefile b/src/mesa/drivers/dri/fb/Makefile index a50aa0cb455..578eeb94400 100644 --- a/src/mesa/drivers/dri/fb/Makefile +++ b/src/mesa/drivers/dri/fb/Makefile @@ -64,7 +64,7 @@ $(LIB_DIR)/$(LIBNAME): $(OBJECTS) $(MESA_MODULES) $(WINOBJ) Makefile depend: $(C_SOURCES) $(ASM_SOURCES) touch depend $(MKDEP) $(MKDEP_OPTIONS) $(INCLUDE_DIRS) $(C_SOURCES) $(ASM_SOURCES) \ - >& /dev/null + > /dev/null 2>&1 # Emacs tags |