don't use the release stuff for Windows CE

SVN revision: 40630
This commit is contained in:
Vincent Torri 2009-05-13 18:58:15 +00:00
parent e66379a188
commit bf1282a758
1 changed files with 9 additions and 2 deletions

View File

@ -24,9 +24,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)