hmm this is probably a better place for the check, as only the

Intel stuff has to be overwritten.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2891 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
gabucino 2001-11-14 00:33:39 +00:00
parent 5728504c7f
commit 913f5042c6
1 changed files with 12 additions and 10 deletions

22
configure vendored
View File

@ -821,6 +821,18 @@ i386|i486|i586|i686)
_march="-march=$proc"
_mcpu="-mcpu=$proc"
##
## Gabucino : --target takes effect here (hopefully...) by overwriting
## autodetected mcpu/march parameters
##
if test "$_target" ; then
_march="-march=$host_arch"
_mcpu="-mcpu=$host_arch"
proc="$_target" # a little cosmetic
fi
#echo "DONE (${proc})."
;;
@ -885,16 +897,6 @@ mips)
;;
esac
##
## Gabucino : --target takes effect here (hopefully...) by overwriting
## autodetected mcpu/march parameters
##
if test "$_target" ; then
_march="-march=$host_arch"
_mcpu="-mcpu=$host_arch"
proc="$_target" # a little cosmetic
fi
# ---