configure.ac: Support version strings like W.X.Y.Z-XXXXXX

This commit is contained in:
Jeremy Huddleston 2009-02-17 23:25:14 -08:00
parent 066b17028a
commit 43967514cd

View File

@ -411,7 +411,7 @@ XORG_RELEASE_VERSION
dnl augment XORG_RELEASE_VERSION for our snapshot number and to expose the
dnl major number
PVMAJOR=`echo $PACKAGE_VERSION | cut -d . -f 1`
PVS=`echo $PACKAGE_VERSION | cut -d . -f 4`
PVS=`echo $PACKAGE_VERSION | cut -d . -f 4 | cut -d - -f 1`
if test "x$PVS" = "x"; then
PVS="0"
fi