]> git.ipfire.org Git - thirdparty/iw.git/blobdiff - version.sh
bump version to 4.3
[thirdparty/iw.git] / version.sh
index 773486faacebaa63d2f980be67cde9ec00dd7de1..7ccd419ffc468b2806add4bfff43c325abb866a8 100755 (executable)
@@ -1,23 +1,23 @@
 #!/bin/sh
 
-VERSION="0.9.5"
+VERSION="4.3"
+OUT="$1"
 
-(
-if head=`git rev-parse --verify HEAD 2>/dev/null`; then
+if [ -d .git ] && head=`git rev-parse --verify HEAD 2>/dev/null`; then
        git update-index --refresh --unmerged > /dev/null
-       descr=$(git describe)
+       descr=$(git describe --match=v*)
 
        # 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"