summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b5ed3c9)
raw | patch | inline | side by side (parent: b5ed3c9)
author | Manuel Sanmartin (no email) <collectd@verplant.org> | |
Mon, 23 Nov 2009 20:51:29 +0000 (21:51 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Mon, 23 Nov 2009 21:23:17 +0000 (22:23 +0100) |
version-gen.sh | patch | blob | history |
diff --git a/version-gen.sh b/version-gen.sh
index e0114d0422a0a94c0ac071628e314e09221dbac3..a36d6f5e264c913a643c67397e23610f9db1dafc 100755 (executable)
--- a/version-gen.sh
+++ b/version-gen.sh
VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`"
-echo -n "$VERSION"
+if test "x`uname -s`" = "xAIX" ; then
+ echo "$VERSION\c"
+else
+ echo -n "$VERSION"
+fi