]> git.ipfire.org Git - thirdparty/iw.git/blobdiff - version.sh
separate commands into sections
[thirdparty/iw.git] / version.sh
index 5be31770be211920311db8187f87358f5f9f4de7..27e67999b4e8a33c702d83e7a8bd3f459a4fc2b7 100755 (executable)
@@ -1,8 +1,10 @@
 #!/bin/sh
 
-VERSION="0.9.3"
+VERSION="0.9.16"
+OUT="$1"
+
+echo '#include "iw.h"' > "$OUT"
 
-(
 if head=`git rev-parse --verify HEAD 2>/dev/null`; then
        git update-index --refresh --unmerged > /dev/null
        descr=$(git describe)
@@ -10,14 +12,13 @@ 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 "const char iw_version[] = \"$v\";" >> "$OUT"