bindings/java/Makefile.am: Add "uninstall-local" target.
[collectd.git] / version-gen.sh
index 27ceb3b..b09be8e 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
-DEFAULT_VERSION="4.10.2.git"
+DEFAULT_VERSION="5.5.0.git"
 
-VERSION="`git describe 2> /dev/null | sed -e 's/^collectd-//'`"
+VERSION="`git describe 2> /dev/null | grep collectd | sed -e 's/^collectd-//'`"
 
 if test -z "$VERSION"; then
        VERSION="$DEFAULT_VERSION"
@@ -10,8 +10,4 @@ fi
 
 VERSION="`echo \"$VERSION\" | sed -e 's/-/./g'`"
 
-if test "x`uname -s`" = "xAIX" || test "x`uname -s`" = "xSunOS" ; then
-       echo "$VERSION\c"
-else 
-       echo -n "$VERSION"
-fi
+printf "%s" "$VERSION"