10l to myself for being overzealous with $cross_prefix

Originally committed as revision 5465 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2006-06-10 23:37:38 +00:00
parent 38f0d3ce76
commit 1f6b1bcb81

4
configure vendored
View File

@ -129,12 +129,12 @@ temp_extralibs(){
check_cc(){
cat >$TMPC
${cross_prefix}$cc $CFLAGS "$@" -c -o $TMPO $TMPC >/dev/null 2>&1
$cc $CFLAGS "$@" -c -o $TMPO $TMPC >/dev/null 2>&1
}
check_ld(){
cat >$TMPC
${cross_prefix}$cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs >/dev/null 2>&1
$cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs >/dev/null 2>&1
}
check_cflags(){