2
0

--broken is new and not really needed.

This commit is contained in:
Maarten Billemont
2017-11-06 15:38:30 -05:00
parent 11d9af3844
commit 1841541bc4
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ cflags=( -O3 $CFLAGS )
ldflags=( $LDFLAGS )
# Version.
if { mpw_version=$(git describe --match '*-cli*' --long --dirty --broken) || mpw_version=$(<VERSION); } 2>/dev/null; then
if { mpw_version=$(git describe --match '*-cli*' --long --dirty) || mpw_version=$(<VERSION); } 2>/dev/null; then
cflags+=( -D"MP_VERSION=$mpw_version" )
fi
echo 2>&1 "Current mpw source version ${mpw_version:-<unknown>}..."