summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 80a66a5)
raw | patch | inline | side by side (parent: 80a66a5)
author | Manuel Luis Sanmartin Rozada <manuel.luis@gmail.com> | |
Sat, 29 Sep 2012 19:45:33 +0000 (21:45 +0200) | ||
committer | Florian 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>
Note: bash is not installed in AIX by default.
Signed-off-by: Florian Forster <octo@collectd.org>
version-gen.sh | patch | blob | history |
diff --git a/version-gen.sh b/version-gen.sh
index 97a27a0d75f6bf3adb19cafe27622503eda72c21..d6d7bb202ba41f39a806fa6ca22ec9cb22b70961 100755 (executable)
--- a/version-gen.sh
+++ b/version-gen.sh
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"