]> git.pld-linux.org Git - packages/vim.git/blob - 6.2.181
- manpaged md5 fix
[packages/vim.git] / 6.2.181
1 To: vim-dev@vim.org
2 Subject: Patch 6.2.181
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 6.2.181 (after 6.2.171)
11 Problem:    The "-o" argument of "find" has lower priority than the implied
12             "and" with "-print".
13 Solution:   Add parenthesis around the "-o" expression. (Gordon Prieur)
14 Files:      src/Makefile
15
16
17 *** ../vim-6.2.180/src/Makefile Tue Jan  6 16:20:37 2004
18 --- src/Makefile        Mon Jan 12 19:55:19 2004
19 ***************
20 *** 1724,1730 ****
21         chmod $(FILEMOD) `find $(DEST_MACRO) -type f -print`
22         chmod $(SCRIPTMOD) $(DEST_MACRO)/less.sh
23   # When using CVS some CVS directories might have been copied.
24 !       cvs=`find $(DEST_MACRO) -name CVS -o -name AAPDIR -print`; \
25               if test -n "$$cvs"; then \
26                  rm -rf $$cvs; \
27               fi
28 --- 1730,1736 ----
29         chmod $(FILEMOD) `find $(DEST_MACRO) -type f -print`
30         chmod $(SCRIPTMOD) $(DEST_MACRO)/less.sh
31   # When using CVS some CVS directories might have been copied.
32 !       cvs=`find $(DEST_MACRO) \( -name CVS -o -name AAPDIR \) -print`; \
33               if test -n "$$cvs"; then \
34                  rm -rf $$cvs; \
35               fi
36 ***************
37 *** 1751,1757 ****
38   # install the runtime tools
39         $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS)
40   # When using CVS some CVS directories might have been copied.
41 !       cvs=`find $(DEST_TOOLS) -name CVS -o -name AAPDIR -print`; \
42               if test -n "$$cvs"; then \
43                  rm -rf $$cvs; \
44               fi
45 --- 1757,1763 ----
46   # install the runtime tools
47         $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS)
48   # When using CVS some CVS directories might have been copied.
49 !       cvs=`find $(DEST_TOOLS) \( -name CVS -o -name AAPDIR \) -print`; \
50               if test -n "$$cvs"; then \
51                  rm -rf $$cvs; \
52               fi
53 *** ../vim-6.2.180/src/version.c        Sun Jan 11 12:45:02 2004
54 --- src/version.c       Mon Jan 12 19:52:07 2004
55 ***************
56 *** 639,640 ****
57 --- 639,642 ----
58   {   /* Add new patch number below this line */
59 + /**/
60 +     181,
61   /**/
62
63 -- 
64 hundred-and-one symptoms of being an internet addict:
65 251. You've never seen your closest friends who usually live WAY too far away.
66
67  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
68 ///        Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
69 \\\              Project leader for A-A-P -- http://www.A-A-P.org        ///
70  \\\  Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html  ///
This page took 0.03091 seconds and 3 git commands to generate.