1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-13 01:31:18 +02:00

24429: use ZSH_VERSIONSUFFIX instead of ZSH_EXTRAVERSION.

This commit is contained in:
Clint Adams 2008-01-22 01:59:26 +00:00
parent cb01b4b888
commit a199833e23
3 changed files with 6 additions and 3 deletions

View file

@ -1,5 +1,8 @@
2008-01-22 Clint Adams <clint@zsh.org>
* 24429: configure.ac, Etc/zsh-development-guide:
use ZSH_VERSIONSUFFIX instead of ZSH_EXTRAVERSION.
* Frank Terbeck: 24413: Completion/Unix/Command/_git: handle
completion when git aliases are used.

View file

@ -860,9 +860,9 @@ The following parameters are currently used:
Version Suffixes
----------------
The configure script reads the version number from Config/version.mk.
If the environment variable ZSH_EXTRAVERSION is set, the string
If the environment variable ZSH_VERSIONSUFFIX is set, the string
contained therein will be appended to the version string. For example,
if Config/version.mk contains "VERSION=4.3.4-dev-7" and
ZSH_EXTRAVERSION is set to "-ca", $ZSH_VERSION in the shell built from
ZSH_VERSIONSUFFIX is set to "-ca", $ZSH_VERSION in the shell built from
that run will equal "4.3.4-dev-7-ca". Caution is recommended when
using this feature, as is-at-least may misunderstand your conventions.

View file

@ -31,7 +31,7 @@ AC_CONFIG_HEADER(config.h)
dnl What version of zsh are we building ?
. ${srcdir}/Config/version.mk
VERSION="$VERSION$ZSH_EXTRAVERSION"
VERSION="$VERSION$ZSH_VERSIONSUFFIX"
echo "configuring for zsh $VERSION"
dnl ----------------------------------------------