simplify/fix the ASM_FLAGS tests (bug 12931)

This commit is contained in:
Brian 2007-10-25 11:10:10 -06:00
parent cae5b7f1e3
commit 6dcf65ff0d
1 changed files with 2 additions and 2 deletions

View File

@ -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