]> git.ipfire.org Git - thirdparty/iw.git/blobdiff - version.sh
bump version to 3.0
[thirdparty/iw.git] / version.sh
index 773486faacebaa63d2f980be67cde9ec00dd7de1..b329e2465ae18ed4b661c1c7d11b342d5c35b381 100755 (executable)
@@ -1,8 +1,8 @@
 #!/bin/sh
 
-VERSION="0.9.5"
+VERSION="3.0"
+OUT="$1"
 
-(
 if head=`git rev-parse --verify HEAD 2>/dev/null`; then
        git update-index --refresh --unmerged > /dev/null
        descr=$(git describe)
@@ -10,14 +10,14 @@ if head=`git rev-parse --verify HEAD 2>/dev/null`; then
        # on git builds check that the version number above
        # is correct...
        [ "${descr%%-*}" = "v$VERSION" ] || exit 2
-       
-       echo -n '#define IW_VERSION "'
-       echo -n "${descr#v}"
+
+       v="${descr#v}"
        if git diff-index --name-only HEAD | read dummy ; then
-               echo -n "-dirty"
+               v="$v"-dirty
        fi
-       echo '"'
 else
-echo "#define IW_VERSION \"$VERSION-nogit\""
+       v="$VERSION"
 fi
-) > version.h
+
+echo '#include "iw.h"' > "$OUT"
+echo "const char iw_version[] = \"$v\";" >> "$OUT"