use grep -q
authorBrian <brian.paul@tungstengraphics.com>
Thu, 25 Oct 2007 20:46:35 +0000 (14:46 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Thu, 25 Oct 2007 20:47:14 +0000 (14:47 -0600)
src/mesa/Makefile

index 8e35efb7dcad1909a14160f3acc5ad24e8f72027..77bb7be48066d071f67ea10250611fb21df750c7 100644 (file)
@@ -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