Commit 1f6b1bcb authored by Måns Rullgård's avatar Måns Rullgård

10l to myself for being overzealous with $cross_prefix

Originally committed as revision 5465 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 38f0d3ce
......@@ -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(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment