diff options
author | Måns Rullgård <mans@mansr.com> | 2006-06-10 23:37:38 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-06-10 23:37:38 +0000 |
commit | 1f6b1bcb8139ffc66a8eb8c8cc60c555028dd625 (patch) | |
tree | 50c2a39f88900922bdf018086d74e31e5204ef29 /configure | |
parent | 38f0d3ce7613028337f35dcdc4f8f2aa1070c5e3 (diff) | |
download | ffmpeg-1f6b1bcb8139ffc66a8eb8c8cc60c555028dd625.tar.gz |
10l to myself for being overzealous with $cross_prefix
Originally committed as revision 5465 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(){ |