diff options
author | Keith Whitwell <[email protected]> | 2007-08-03 12:28:03 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-08-03 12:28:03 +0100 |
commit | 389b1d1a3fe742004165d7dcb381314dd9c6806f (patch) | |
tree | c465d9460c44998d4dd3f95ab572d14e64983fba /src/mesa/Makefile | |
parent | c358a39af5968faf27c5fdc85bf64ac76fa2486b (diff) |
Workaround wierd oops on gutsy when building mesa.
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index ee4cbd0d38e..7d4bd22203d 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -141,8 +141,9 @@ $(TOP)/$(LIB_DIR)/$(OSMESA_LIB_NAME): $(OSMESA_DRIVER_OBJECTS) $(OSMESA16_OBJECT depend: $(ALL_SOURCES) @ echo "running $(MKDEP)" + @ rm -f depend # workaround oops on gutsy?!? @ touch depend - @$(MKDEP) $(MKDEP_OPTIONS) $(DEFINES) $(INCLUDE_DIRS) $(ALL_SOURCES) \ + @ $(MKDEP) $(MKDEP_OPTIONS) $(DEFINES) $(INCLUDE_DIRS) $(ALL_SOURCES) \ > /dev/null 2>/dev/null |