]> git.ipfire.org Git - thirdparty/iw.git/blobdiff - version.sh
print wdev id in event info
[thirdparty/iw.git] / version.sh
index f61b39af427fe469c2b9430fa8cabf2646f1d6fd..4d97eda2614cd1611dbeb637cd15ffe3ce514e14 100755 (executable)
@@ -1,23 +1,23 @@
-#!/bin/bash
+#!/bin/sh
 
-VERSION="0.9"
+VERSION="3.5"
+OUT="$1"
 
-(
 if head=`git rev-parse --verify HEAD 2>/dev/null`; then
        git update-index --refresh --unmerged > /dev/null
        descr=$(git describe)
 
        # on git builds check that the version number above
        # is correct...
-       [ "${descr/-*/}" == "v$VERSION" ] || exit 2
-       
-       echo -n '#define IW_VERSION "'
-       echo -n "${descr:1}"
+       [ "${descr%%-*}" = "v$VERSION" ] || exit 2
+
+       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\""
+       v="$VERSION"
 fi
-) > version.h
+
+echo '#include "iw.h"' > "$OUT"
+echo "const char iw_version[] = \"$v\";" >> "$OUT"