]> git.ipfire.org Git - thirdparty/iw.git/blobdiff - version.sh
add a few new commands/events
[thirdparty/iw.git] / version.sh
index 704afe38d8f70c7f8fd74c0cd71738ef40d823a7..3b7cafdb2b3bdceb87a643bdf888aab660d3db88 100755 (executable)
@@ -1,13 +1,11 @@
 #!/bin/sh
 
-VERSION="0.9.17"
+VERSION="4.1"
 OUT="$1"
 
-echo '#include "iw.h"' > "$OUT"
-
-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...
@@ -21,4 +19,5 @@ else
        v="$VERSION"
 fi
 
+echo '#include "iw.h"' > "$OUT"
 echo "const char iw_version[] = \"$v\";" >> "$OUT"