summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-06-10 23:37:38 +0000
committerMåns Rullgård <mans@mansr.com>2006-06-10 23:37:38 +0000
commit1f6b1bcb8139ffc66a8eb8c8cc60c555028dd625 (patch)
tree50c2a39f88900922bdf018086d74e31e5204ef29 /configure
parent38f0d3ce7613028337f35dcdc4f8f2aa1070c5e3 (diff)
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-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index dcb8d93aa9..066f740a54 100755
--- a/configure
+++ b/configure
@@ -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(){