projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8578534
)
use grep -q
author
Brian
<brian.paul@tungstengraphics.com>
Thu, 25 Oct 2007 20:46:35 +0000
(14:46 -0600)
committer
Brian
<brian.paul@tungstengraphics.com>
Thu, 25 Oct 2007 20:47:14 +0000
(14:47 -0600)
src/mesa/Makefile
patch
|
blob
|
history
diff --git
a/src/mesa/Makefile
b/src/mesa/Makefile
index 8e35efb7dcad1909a14160f3acc5ad24e8f72027..77bb7be48066d071f67ea10250611fb21df750c7 100644
(file)
--- a/
src/mesa/Makefile
+++ b/
src/mesa/Makefile
@@
-153,10
+153,10
@@
depend: $(ALL_SOURCES)
subdirs:
- @ if echo
$(ASM_FLAGS) | grep
USE_X86_ASM ; then \
+ @ if echo
"$(ASM_FLAGS)" | grep -q
USE_X86_ASM ; then \
(cd x86 ; $(MAKE)) ; \
fi
- @ if echo
$(ASM_FLAGS) | grep
USE_X86_64_ASM ; then \
+ @ if echo
"$(ASM_FLAGS)" | grep -q
USE_X86_64_ASM ; then \
(cd x86 ; $(MAKE)) ; \
(cd x86-64 ; $(MAKE)) ; \
fi