From: Christian E. <ehr...@li...> - 2008-01-09 16:05:24
|
Subject: [PATCH 1/3] Add OBJCOPY to kvm-userspace/user/configure output From: Hollis Blanchard <ho...@us...> From: Christian Ehrhardt <ehr...@li...> Adds objectcopy to the configure script because it is needed for some kvmctl implementations for a simple binary loader. Signed-off-by: Hollis Blanchard <ho...@us...> Signed-off-by: Christian Ehrhardt <ehr...@li...> --- 1 file changed, 2 insertions(+) user/configure | 2 ++ diff -r deef85d890df user/configure --- a/user/configure Wed Jan 09 13:29:39 2008 +0100 +++ b/user/configure Wed Jan 09 13:35:00 2008 +0100 @@ -4,6 +4,7 @@ kerneldir=/lib/modules/$(uname -r)/build kerneldir=/lib/modules/$(uname -r)/build cc=gcc ld=ld +objcopy=objcopy arch=`uname -m | sed -e s/i.86/i386/` cross_prefix= @@ -63,4 +64,5 @@ ARCH=$arch ARCH=$arch CC=$cross_prefix$cc LD=$cross_prefix$ld +OBJCOPY=$cross_prefix$objcopy EOF |