]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.047
- new
[packages/vim.git] / 7.0.047
1 To: vim-dev@vim.org
2 Subject: Patch 7.0.047
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.0.047
11 Problem:    When running configure the exit status is wrong.
12 Solution:   Handle the exit status properly. (Matthew Woehlke)
13 Files:      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 -- 
54 The primary purpose of the DATA statement is to give names to constants;
55 instead of referring to pi as 3.141592653589793 at every appearance, the
56 variable PI can be given that value with a DATA statement and used instead
57 of the longer form of the constant.  This also simplifies modifying the
58 program, 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.041686 seconds and 3 git commands to generate.