Code

The commit 3bda88e8b425f43644e303e6957e38ae59c1bc83 change the shell from sh to bash.
authorManuel Luis Sanmartin Rozada <manuel.luis@gmail.com>
Sat, 29 Sep 2012 19:45:33 +0000 (21:45 +0200)
committerFlorian Forster <octo@collectd.org>
Tue, 2 Oct 2012 07:44:51 +0000 (09:44 +0200)
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 <octo@collectd.org>
version-gen.sh

index 97a27a0d75f6bf3adb19cafe27622503eda72c21..d6d7bb202ba41f39a806fa6ca22ec9cb22b70961 100755 (executable)
@@ -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"