Blob


1 #!/bin/sh
2 #
3 # got-portable-ver: emits the version of b-em which is building.
4 # If this is a release build, then the tag name is chomped
5 # to remove extraneous git information.
6 #
7 # If it's a developer build, it's left as-is.
8 #
9 # Intended to be called from configure.ac (via autogen.sh)
10 GOT_PORTABLE_VER=0.75
12 [ -d ".git" ] || { echo "$B_EM_VERSION" ; exit ; }
14 git describe --always --dirty 2>/dev/null || \
15 echo "$GOT_PORTABLE_VER"