projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cae5b7f
)
simplify/fix the ASM_FLAGS tests (bug 12931)
author
Brian
<brian.paul@tungstengraphics.com>
Thu, 25 Oct 2007 17:10:10 +0000
(11:10 -0600)
committer
Brian
<brian.paul@tungstengraphics.com>
Thu, 25 Oct 2007 17:10:10 +0000
(11:10 -0600)
src/mesa/Makefile
patch
|
blob
|
history
diff --git
a/src/mesa/Makefile
b/src/mesa/Makefile
index 3722593f21b66108f5c359693017428ece2dfda2..8e35efb7dcad1909a14160f3acc5ad24e8f72027 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 USE_X86_ASM
; then \
(cd x86 ; $(MAKE)) ; \
fi
- @ if
[ `echo $(ASM_FLAGS) | grep USE_X86_64_ASM` ]
; then \
+ @ if
echo $(ASM_FLAGS) | grep USE_X86_64_ASM
; then \
(cd x86 ; $(MAKE)) ; \
(cd x86-64 ; $(MAKE)) ; \
fi