From: Paolo Bonzini Date: Thu, 23 Dec 2010 10:44:00 +0000 (+0100) Subject: move --srcdir detection earlier X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ca4deeb13abc72e3ac5a9e5bc86a25bc2d423b16;p=qemu.git move --srcdir detection earlier This will help getting config.guess and config.sub from the srcdir. Signed-off-by: Paolo Bonzini Signed-off-by: Blue Swirl --- diff --git a/configure b/configure index 988008a197..ee782dbe0f 100755 --- a/configure +++ b/configure @@ -75,6 +75,7 @@ path_of() { } # default parameters +source_path=`dirname "$0"` cpu="" interp_prefix="/usr/gnemul/qemu-%M" static="no" @@ -182,6 +183,8 @@ for opt do ;; --cc=*) CC="$optarg" ;; + --source-path=*) source_path="$optarg" + ;; --cpu=*) cpu="$optarg" ;; --extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS" @@ -228,6 +231,9 @@ QEMU_CFLAGS="-D_FORTIFY_SOURCE=2 $QEMU_CFLAGS" QEMU_INCLUDES="-I. -I\$(SRC_PATH)" LDFLAGS="-g $LDFLAGS" +# make source path absolute +source_path=`cd "$source_path"; pwd` + check_define() { cat > $TMPC <