projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c5e2b85
)
Prevent makedepend from running multiple times
author
Dan Nicholson
<dbn.lists@gmail.com>
Tue, 6 May 2008 21:27:57 +0000
(14:27 -0700)
committer
Dan Nicholson
<dbn.lists@gmail.com>
Tue, 6 May 2008 21:29:10 +0000
(14:29 -0700)
The default target in src/mesa/Makefile calls a recursive $(MAKE). With
parallel jobs, this causes makedepend to run twice. Instead, block on
the first make until depend has been created.
src/mesa/Makefile
patch
|
blob
|
history
diff --git
a/src/mesa/Makefile
b/src/mesa/Makefile
index 5f45db1d24da0f42c12aead3bae1ea7e9517f2d8..70d31ad6c18eae19271fdafb3d20b873af1ed8a9 100644
(file)
--- a/
src/mesa/Makefile
+++ b/
src/mesa/Makefile
@@
-24,7
+24,7
@@
GL_TINY = 0$(MESA_MAJOR)0$(MESA_MINOR)0$(MESA_TINY)
# Figure out what to make here
-default:
+default:
depend
@for driver in $(DRIVER_DIRS) ; do \
case "$$driver" in \
x11) $(MAKE) stand-alone ;; \