Egger Christoph
2013-Apr-22 11:47 UTC
[PATCH] install qemu into the location specified via configure --prefix.
Install qemu into the location specified via configure --prefix. You will notice when you use something else than /usr/local. Signed-off-by: Christoph Egger <chegger@amazon.de> diff --git a/tools/Makefile b/tools/Makefile index 8a30c83..e44a3e9 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -188,6 +188,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find fi; \ cd qemu-xen-dir; \ $$source/configure --enable-xen --target-list=i386-softmmu \ + --prefix=$(PREFIX) \ --source-path=$$source \ --extra-cflags="-I$(XEN_ROOT)/tools/include \ -I$(XEN_ROOT)/tools/libxc \ _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
Ian Campbell
2013-Apr-22 11:53 UTC
Re: [PATCH] install qemu into the location specified via configure --prefix.
On Mon, 2013-04-22 at 12:47 +0100, Egger Christoph wrote:> Install qemu into the location specified via configure --prefix. > You will notice when you use something else than /usr/local.Anyone got any opinions on the issues I mention in http://lists.xen.org/archives/html/xen-devel/2012-12/msg01027.html ?> Signed-off-by: Christoph Egger <chegger@amazon.de>This patch is at least an improvement, so as far as it goes: Acked-by: Ian Campbell <ian.campbell@citrix.com>> > diff --git a/tools/Makefile b/tools/Makefile > index 8a30c83..e44a3e9 100644 > --- a/tools/Makefile > +++ b/tools/Makefile > @@ -188,6 +188,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find > fi; \ > cd qemu-xen-dir; \ > $$source/configure --enable-xen --target-list=i386-softmmu \ > + --prefix=$(PREFIX) \ > --source-path=$$source \ > --extra-cflags="-I$(XEN_ROOT)/tools/include \ > -I$(XEN_ROOT)/tools/libxc \
Ian Campbell
2013-Apr-24 11:56 UTC
Re: [PATCH] install qemu into the location specified via configure --prefix.
On Mon, 2013-04-22 at 12:53 +0100, Ian Campbell wrote:> On Mon, 2013-04-22 at 12:47 +0100, Egger Christoph wrote: > > Install qemu into the location specified via configure --prefix. > > You will notice when you use something else than /usr/local. > > Anyone got any opinions on the issues I mention in > http://lists.xen.org/archives/html/xen-devel/2012-12/msg01027.html ? > > > Signed-off-by: Christoph Egger <chegger@amazon.de> > > This patch is at least an improvement, so as far as it goes: > Acked-by: Ian Campbell <ian.campbell@citrix.com>Now applied, thanks.