]> git.pld-linux.org Git - packages/vim.git/blame - 7.0.080
- updated to 1.15
[packages/vim.git] / 7.0.080
CommitLineData
7fdb47f1
AG
1To: vim-dev@vim.org
2Subject: Patch 7.0.080
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.080
11Problem: Generating auto/pathdef.c fails for CFLAGS with a backslash.
12Solution: Double backslashes in the string. (Alexey Froloff)
13Files: 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--
46E M A C S
47s e l o h
48c t t n i
49a a t f
50p r t
51e 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.236218 seconds and 4 git commands to generate.