summaryrefslogtreecommitdiff
path: root/src/mesa/Makefile
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-10-25 14:46:35 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-10-25 14:47:14 -0600
commitff042bfdeeeb0a3d658d5ab1dbdcac7b67aac0f8 (patch)
tree84e6cf827c31ab1a118f8a27a790e0a5e6876a26 /src/mesa/Makefile
parent8578534f48a9d6b3e13364a675c263bc5a38700f (diff)
use grep -q
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r--src/mesa/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile
index 8e35efb7dc..77bb7be480 100644
--- 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