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:10:10 -0600 |
commit | 6dcf65ff0d6fcea9c7e3ae51d51eac6f9a030e47 (patch) | |
tree | 184f7e67b5268f686234d49d5af9454bcf2b2aa5 /src/mesa | |
parent | cae5b7f1e34e7ab23937d3ba2ad8a22319e2985a (diff) |
simplify/fix the ASM_FLAGS tests (bug 12931)
Diffstat (limited to 'src/mesa')
-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 3722593f21..8e35efb7dc 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 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 |