qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] Re: [PATCH 01/11] fix 'no such file' error from make_device


From: Paolo Bonzini
Subject: [Qemu-devel] Re: [PATCH 01/11] fix 'no such file' error from make_device_config.sh
Date: Sat, 15 Jan 2011 16:42:59 +0100
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Lightning/1.0b3pre Mnenhy/0.8.3 Thunderbird/3.1.7

On 01/14/2011 08:12 PM, David Ahern wrote:
make_device_config currently emits an error:

make config-all-devices.mak
   GEN   x86_64-softmmu/config-devices.mak
/home/dsa/kvm/releases/qemu.git/make_device_config.sh: line 21: 
/home/dsa/kvm/releases/qe

Root cause is a space in the filename (determined by Markus Armbruster). Change from 
Markus Armbruster<address@hidden>.

Signed-off-by: David Ahern<address@hidden>
---
  make_device_config.sh |    2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/make_device_config.sh b/make_device_config.sh
index 596fc5b..711829c 100644
--- a/make_device_config.sh
+++ b/make_device_config.sh
@@ -18,7 +18,7 @@ process_includes () {

  f=$src
  while [ -n "$f" ] ; do
-  f=`tr -d '\r'<  $f | awk '/^include / {ORS=" "; print "'$src_dir'/" $2}'`
+  f=`tr -d '\r'<"$f" | awk '/^include / {print "'$src_dir'/" $2}'`

Can anybody with Windows test this to make sure there are no CR woes? That was IIRC the reason for the strange ORS setting.

If there are, we can just change it to this:

  f=`tr -d '\r'<"$f" | awk '/^include / {printf "'$src_dir'/%s", $2}'`

Sorry for not noticing this in the previous thread.

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]