split compile and link in check_ld
authorMåns Rullgård <mans@mansr.com>
Wed, 12 Jul 2006 00:33:22 +0000 (00:33 +0000)
committerMåns Rullgård <mans@mansr.com>
Wed, 12 Jul 2006 00:33:22 +0000 (00:33 +0000)
based on patch by Graham Booker <ffmpeglist at cod3r com>

Originally committed as revision 5722 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 50ea191..5a8f365 100755 (executable)
--- a/configure
+++ b/configure
@@ -231,10 +231,9 @@ check_cpp(){
 
 check_ld(){
     log check_ld "$@"
-    cat >$TMPC
-    log_file $TMPC
-    log $cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs
-    $cc $CFLAGS $LDFLAGS "$@" -o $TMPE $TMPC $extralibs >>$logfile 2>&1
+    check_cc || return
+    log $cc $LDFLAGS "$@" -o $TMPE $TMPO $extralibs
+    $cc $LDFLAGS "$@" -o $TMPE $TMPO $extralibs >>$logfile 2>&1
 }
 
 check_cflags(){