]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.047
- new
[packages/vim.git] / 7.0.047
CommitLineData
1242c4cb
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.047
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.0.047
11Problem: When running configure the exit status is wrong.
12Solution: Handle the exit status properly. (Matthew Woehlke)
13Files: configure, src/configure
14
15
16*** ../vim-7.0.046/configure Sun Jun 13 21:32:42 2004
17--- configure Mon Jul 10 20:26:26 2006
18***************
19*** 3,6 ****
20 # This is just a stub for the Unix configure script, to provide support for
21 # doing "./configure" in the top Vim directory.
22
23! cd src && ./configure "$@"
24--- 3,6 ----
25 # This is just a stub for the Unix configure script, to provide support for
26 # doing "./configure" in the top Vim directory.
27
28! cd src && exec ./configure "$@"
29*** ../vim-7.0.046/src/configure Thu Dec 22 23:38:38 2005
30--- src/configure Mon Jul 10 20:26:53 2006
31***************
32*** 2,6 ****
33--- 2,10 ----
34 # run the automatically generated configure script
35 CONFIG_STATUS=auto/config.status \
36 auto/configure "$@" --srcdir="${srcdir:-.}" --cache-file=auto/config.cache
37+ result=$?
38+
39 # Stupid autoconf 2.5x causes this file to be left behind.
40 if test -f configure.lineno; then rm -f configure.lineno; fi
41+
42+ exit $result
43*** ../vim-7.0.046/src/version.c Tue Aug 8 18:08:54 2006
44--- src/version.c Tue Aug 8 19:09:54 2006
45***************
46*** 668,669 ****
47--- 668,671 ----
48 { /* Add new patch number below this line */
49+ /**/
50+ 47,
51 /**/
52
53--
54The primary purpose of the DATA statement is to give names to constants;
55instead of referring to pi as 3.141592653589793 at every appearance, the
56variable PI can be given that value with a DATA statement and used instead
57of the longer form of the constant. This also simplifies modifying the
58program, should the value of pi change.
59 -- FORTRAN manual for Xerox Computers
60
61 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
62/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
63\\\ download, build and distribute -- http://www.A-A-P.org ///
64 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.034059 seconds and 4 git commands to generate.