diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-08-08 17:08:52 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-08-08 17:08:52 +0000 |
commit | 7085ee750e8b2936e2880e9eacda01264dcda0c2 (patch) | |
tree | 30d3304f36ee789a5e1e1c9ca6318e44e7d0822d | |
parent | 8ff38007cb49c85f10ce6e6394074e41dbe4c97d (diff) | |
download | vim-git-7085ee750e8b2936e2880e9eacda01264dcda0c2.tar.gz |
updated for version 7.0-047v7.0.047
-rwxr-xr-x | configure | 2 | ||||
-rwxr-xr-x | src/configure | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 7 insertions, 1 deletions
@@ -3,4 +3,4 @@ # This is just a stub for the Unix configure script, to provide support for # doing "./configure" in the top Vim directory. -cd src && ./configure "$@" +cd src && exec ./configure "$@" diff --git a/src/configure b/src/configure index f9f65fa36..d8595a524 100755 --- a/src/configure +++ b/src/configure @@ -2,5 +2,9 @@ # run the automatically generated configure script CONFIG_STATUS=auto/config.status \ auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache +result=$? + # Stupid autoconf 2.5x causes this file to be left behind. if test -f configure.lineno; then rm -f configure.lineno; fi + +exit $result diff --git a/src/version.c b/src/version.c index 785af8d51..f57cdc7bb 100644 --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 47, +/**/ 46, /**/ 45, |