qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [Bug 636315] [NEW] configure and build errors on Solari


From: Andreas Färber
Subject: Re: [Qemu-devel] [Bug 636315] [NEW] configure and build errors on Solaris 10 due to /bin/sh usage
Date: Sun, 12 Sep 2010 19:58:27 +0200

Am 12.09.2010 um 19:47 schrieb Blue Swirl:

On Sun, Sep 12, 2010 at 5:35 PM, Andreas Färber <address@hidden > wrote:
Am 12.09.2010 um 19:22 schrieb Blue Swirl:

What is the output of "sh ./tracetool --nop --check-backend"?

./tracetool: syntax error at line 51: `$' unexpected

Does this patch fix the problem?

diff --git a/tracetool b/tracetool
index 534cc70..c7582bf 100755
--- a/tracetool
+++ b/tracetool
@@ -48,7 +48,8 @@ get_argnames()
{
    local nfields field name
    nfields=0
-    for field in $(get_args "$1"); do
+    args=get_args "$1"
+    for field in "$args"; do

This part yes. (I took the liberty of adding args to the local line above)

        nfields=$((nfields + 1))

Next error is here:
./tracetool: syntax error at line 53: `nfields=$' unexpected


reply via email to

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