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

(cherry picked from commit 43967514cd)
This commit is contained in:
Jeremy Huddleston 2009-02-17 23:25:14 -08:00
parent 67faf41b3f
commit 344b1f2b25
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,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