Re: [PATCH] Remove bashisms from scripts/extract-ikconfig
From: Julio M. Merino Vidal
Date: Sat Jun 09 2007 - 15:27:17 EST
On 09/06/2007, at 21:22, Christian Kujau wrote:
Hi,
I noticed that scripts/extract-ikconfig is using /bin/sh in its
shebang but when /bin/sh is not a symlink to bash, it breaks with:
[...]
@@ -18,8 +18,8 @@ function dump_config {
fi
end=`$binoffset $file $IKCFG_ED 2>/dev/null`
- let start="$start + 8"
- let size="$end - $start"
+ start="`expr $start + 8`"
+ size="`expr $end - $start`"
Wouldn't this be better expressed as:
start=$(($start + 8))
size=$(($end - $start))
to avoid invoking a subshell?
--
Julio M. Merino Vidal <jmerino@xxxxxxxxxx>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/