]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.080
- missing patch
[packages/vim.git] / 7.0.080
1 To: vim-dev@vim.org
2 Subject: Patch 7.0.080
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.080
11 Problem:    Generating auto/pathdef.c fails for CFLAGS with a backslash.
12 Solution:   Double backslashes in the string. (Alexey Froloff)
13 Files:      src/Makefile
14
15
16 *** ../vim-7.0.079/src/Makefile Sat Sep  2 15:31:29 2006
17 --- src/Makefile        Fri Sep  1 21:00:29 2006
18 ***************
19 *** 2261,2267 ****
20   auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in
21         CC="$(CC) $(OSDEF_CFLAGS)" srcdir=$(srcdir) sh $(srcdir)/osdef.sh
22   
23 ! QUOTESED = sed -e 's/"/\\"/g' -e 's/\\"/"/' -e 's/\\";$$/";/'
24   auto/pathdef.c: Makefile auto/config.mk
25         -@echo creating $@
26         -@echo '/* pathdef.c */' > $@
27 --- 2262,2268 ----
28   auto/osdef.h: auto/config.h osdef.sh osdef1.h.in osdef2.h.in
29         CC="$(CC) $(OSDEF_CFLAGS)" srcdir=$(srcdir) sh $(srcdir)/osdef.sh
30   
31 ! QUOTESED = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/'
32   auto/pathdef.c: Makefile auto/config.mk
33         -@echo creating $@
34         -@echo '/* pathdef.c */' > $@
35 *** ../vim-7.0.079/src/version.c        Sat Sep  2 14:54:17 2006
36 --- src/version.c       Sat Sep  2 16:35:50 2006
37 ***************
38 *** 668,669 ****
39 --- 668,671 ----
40   {   /* Add new patch number below this line */
41 + /**/
42 +     80,
43   /**/
44
45 -- 
46 E  M  A  C  S
47 s  e  l  o  h
48 c  t  t  n  i
49 a  a     t  f
50 p        r  t
51 e        o
52          l
53
54  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
55 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
56 \\\        download, build and distribute -- http://www.A-A-P.org        ///
57  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.027057 seconds and 3 git commands to generate.