| To: vim-dev@vim.org |
| Subject: Patch 7.0.047 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=ISO-8859-1 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.0.047 |
| Problem: When running configure the exit status is wrong. |
| Solution: Handle the exit status properly. (Matthew Woehlke) |
| Files: configure, src/configure |
| |
| |
| |
| |
| |
| *** 3,6 **** |
| # This is just a stub for the Unix configure script, to provide support for |
| # doing "./configure" in the top Vim directory. |
| |
| ! cd src && ./configure "$@" |
| --- 3,6 ---- |
| # This is just a stub for the Unix configure script, to provide support for |
| # doing "./configure" in the top Vim directory. |
| |
| ! cd src && exec ./configure "$@" |
| |
| |
| |
| *** 2,6 **** |
| --- 2,10 ---- |
| # 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 |
| |
| |
| |
| *** 668,669 **** |
| --- 668,671 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 47, |
| /**/ |
| |
| -- |
| The primary purpose of the DATA statement is to give names to constants; |
| instead of referring to pi as 3.141592653589793 at every appearance, the |
| variable PI can be given that value with a DATA statement and used instead |
| of the longer form of the constant. This also simplifies modifying the |
| program, should the value of pi change. |
| -- FORTRAN manual for Xerox Computers |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ download, build and distribute -- http://www.A-A-P.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |