diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-10-25 11:10:10 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-10-25 11:12:17 -0600 |
commit | 2c496d8e46dc5a4cfa2172bea922622f0429f5a9 (patch) | |
tree | b40e180093858289ac8c73315d1f6b009860ffee | |
parent | 8f0ba02e44f720b840754415ae10fd3aa15e2644 (diff) |
simplify/fix the ASM_FLAGS tests (bug 12931)
-rw-r--r-- | src/mesa/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 029ba8468f..05cb27cca8 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -154,10 +154,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 |