]> err.no Git - util-linux/commitdiff
build-sys: shell syntax fix in autogen.sh
authorSami Kerola <kerolasa@iki.fi>
Wed, 26 Jan 2011 19:01:33 +0000 (20:01 +0100)
committerKarel Zak <kzak@redhat.com>
Mon, 31 Jan 2011 16:22:30 +0000 (17:22 +0100)
Use of == as synonym of single = sign backfires on systems where
/bin/sh is dash, like with Ubuntu.

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
autogen.sh

index d84acb12b8a852fe4ca38869e435f1580a372f2e..ae9d8c139fef9a17cd3a4e1990c4b7145692716d 100755 (executable)
@@ -55,7 +55,7 @@ test -f mount/mount.c || {
 }
 
 ltver=$(libtoolize --version | awk '/^libtoolize/ { print $4 }')
-test ${ltver##2.} == "$ltver" && {
+test ${ltver##2.} = "$ltver" && {
        echo "You must have libtool version >= 2.x.x, but you have $ltver."
        DIE=1
 }