- just warn if gcc 3.x compiler can't be found
authorMark Huang <mlhuang@cs.princeton.edu>
Wed, 28 Jun 2006 19:21:37 +0000 (19:21 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Wed, 28 Jun 2006 19:21:37 +0000 (19:21 +0000)
scripts/kernel-2.6-planetlab.spec

index dcda04f..c36b260 100644 (file)
@@ -343,8 +343,10 @@ BuildKernel() {
        echo "gcc3 = $gcc3; CC=${CC}"
        if [ -z "$CC" ]; then
            echo "Could not find a gcc 3.x based compiler!"
-           echo "Aborting kernel compilation!"
-           exit -1
+           echo "Trying to compile with gcc $gccversion anyway"
+           CC=gcc
+           #echo "Aborting kernel compilation!"
+           #exit -1
        fi
     fi
     HOSTCC=${CC}