Hi,
Following patch inserts proper spaces to fix printing of "./configure
--help" output:
Before:
--disable-cpu-emulationdisables use of qemu cpu emulation code
After:
--disable-cpu-emulation disables use of qemu cpu emulation code
Cheers,
Ameya.
Signed-off-by: Ameya Palande <[EMAIL PROTECTED]>
diff --git a/configure b/configure
index 72337c9..be3526e 100755
--- a/configure
+++ b/configure
@@ -18,13 +18,13 @@ usage() {
Usage: $0 [options]
Options include:
- --arch=ARCH architecture to compile for ($arch)
- --cross-prefix=PREFIX prefix for cross compile
- --prefix=PREFIX where to install things ($prefix)
- --with-patched-kernel don't use external module
- --kerneldir=DIR kernel build directory ($kerneldir)
- --qemu-cflags=CFLAGS CFLAGS to add to qemu configuration
- --qemu-ldflags=LDFLAGS LDFLAGS to add to qemu configuration
+ --arch=ARCH architecture to compile for ($arch)
+ --cross-prefix=PREFIX prefix for cross compile
+ --prefix=PREFIX where to install things ($prefix)
+ --with-patched-kernel don't use external module
+ --kerneldir=DIR kernel build directory ($kerneldir)
+ --qemu-cflags=CFLAGS CFLAGS to add to qemu configuration
+ --qemu-ldflags=LDFLAGS LDFLAGS to add to qemu configuration
Any additional option is given to qemu's configure verbatim; including:
@@ -32,8 +32,7 @@ EOF
cd qemu
./configure --help | egrep "enable-|disable-" \
| grep -v user | grep -v system | grep -v kqemu | grep -v kvm \
- | sed -e "s/^ / /g" \
- | sed -e"s/ enable/enable/g" | sed -e "s/ disable/disable/g"
+ | sed -e "s/^ / /g"
exit 1
}
--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html