don't use the release stuff for Windows CE

SVN revision: 40628
This commit is contained in:
Vincent Torri 2009-05-13 18:52:48 +00:00
parent 221882c996
commit 354fb4a780
1 changed files with 9 additions and 2 deletions

View File

@ -22,9 +22,16 @@ VMIN=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $2);}'`
VMIC=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $3);}'`
SNAP=`echo $PACKAGE_VERSION | awk -F. '{printf("%s", $4);}'`
version_info=`expr $VMAJ + $VMIN`":$VMIC:$VMIN"
release="ver-pre-svn-01"
release_info="-release $release"
AC_SUBST(version_info)
release="ver-pre-svn-01"
case "$host_os" in
mingw32ce* | cegcc*)
;;
*)
release_info="-release $release"
;;
esac
AC_SUBST(release_info)