From: Manuel Luis Sanmartin Rozada Date: Sat, 29 Sep 2012 19:45:33 +0000 (+0200) Subject: The commit 3bda88e8b425f43644e303e6957e38ae59c1bc83 change the shell from sh to bash. X-Git-Tag: collectd-5.1.1~6 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4d3766818c0c3cbcb87331809868345f18351b10;p=collectd.git The commit 3bda88e8b425f43644e303e6957e38ae59c1bc83 change the shell from sh to bash. To fix the configure script generation error: remove the echo whith \c used in sh. Note: bash is not installed in AIX by default. Signed-off-by: Florian Forster --- diff --git a/version-gen.sh b/version-gen.sh index 97a27a0d..d6d7bb20 100755 --- a/version-gen.sh +++ b/version-gen.sh @@ -10,8 +10,4 @@ fi VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`" -if test "x`uname -s`" = "xAIX" ; then - echo "$VERSION\c" -else - echo -n "$VERSION" -fi +echo -n "$VERSION"