From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 13/14] move --srcdir detection earlier
Date: Sun, 14 Nov 2010 12:49:01 +0100 [thread overview]
Message-ID: <1289735342-8660-14-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1289735342-8660-1-git-send-email-pbonzini@redhat.com>
This will help getting config.guess and config.sub from the srcdir.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
configure | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/configure b/configure
index e667b12..4412234 100755
--- a/configure
+++ b/configure
@@ -69,6 +69,7 @@ path_of() {
}
# default parameters
+source_path=`dirname "$0"`
cpu=""
interp_prefix="/usr/gnemul/qemu-%M"
static="no"
@@ -174,6 +175,8 @@ for opt do
;;
--cc=*) CC="$optarg"
;;
+ --source-path=*) source_path="$optarg"
+ ;;
--cpu=*) cpu="$optarg"
;;
--extra-cflags=*) QEMU_CFLAGS="$optarg $QEMU_CFLAGS"
@@ -220,6 +223,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 <<EOF
#if !defined($1)
@@ -470,10 +476,6 @@ if test "$mingw32" = "yes" ; then
confsuffix=""
fi
-# find source path
-source_path=`dirname "$0"`
-source_path=`cd "$source_path"; pwd`
-
werror=""
for opt do
@@ -485,7 +487,7 @@ for opt do
;;
--interp-prefix=*) interp_prefix="$optarg"
;;
- --source-path=*) source_path="$optarg"
+ --source-path=*)
;;
--cross-prefix=*)
;;
--
1.7.2.3
next prev parent reply other threads:[~2010-11-14 11:49 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-14 11:48 [Qemu-devel] [PATCH 00/14] preparation for autoconfy configure script Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 01/14] default compilation tools to environment variables Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 02/14] default make and install " Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 03/14] move feature variables to the top Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 04/14] fix sparse support (?) Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 05/14] test cc with the complete set of chosen flags Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 06/14] do not pass bogus $(SRC_PATH) include paths to cc during configure Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 07/14] provide portable HOST_LONG_BITS test Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 08/14] fix spelling of $pkg_config, move default together with other cross tools Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 09/14] do not default to non-prefixed pkg-config when cross compiling Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 10/14] reorganize sdl-config tests Paolo Bonzini
2010-11-14 11:48 ` [Qemu-devel] [PATCH 11/14] assume existence of "ln -sf" Paolo Bonzini
2010-11-14 14:39 ` Blue Swirl
2010-11-14 14:57 ` Paolo Bonzini
2010-11-14 11:49 ` [Qemu-devel] [PATCH 12/14] simplify source_path handling Paolo Bonzini
2010-11-14 11:49 ` Paolo Bonzini [this message]
2010-11-14 11:49 ` [Qemu-devel] [PATCH 14/14] remove HOST_CC mention from roms/{sea, vga}bios/config.mak Paolo Bonzini
2010-11-14 20:10 ` [Qemu-devel] [PATCH 00/14] preparation for autoconfy configure script Blue Swirl
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1289735342-8660-14-git-send-email-pbonzini@redhat.com \
--to=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).