Try a different way to silence GCC.
[collectd.git] / version-gen.sh
index 69e4f9a..70b8c26 100755 (executable)
@@ -1,14 +1,13 @@
 #!/bin/sh
 
-DEFAULT_VERSION="4.6.1.git"
+DEFAULT_VERSION="5.5.2.git"
 
-VERSION="$( git describe 2> /dev/null | sed -e 's/^collectd-//' )"
+if [ -d .git ]; then
+       VERSION="`git describe --dirty=+ --abbrev=7 2> /dev/null | grep collectd | sed -e 's/^collectd-//' -e 's/-/./g'`"
+fi
 
 if test -z "$VERSION"; then
        VERSION="$DEFAULT_VERSION"
 fi
 
-VERSION=$( echo "$VERSION" | sed -e 's/-/./g' )
-
-echo -n $VERSION
-
+printf "%s" "$VERSION"