]> git.pld-linux.org Git - packages/vim.git/blame - 6.2.171
- fix for current libselinux
[packages/vim.git] / 6.2.171
CommitLineData
d02ad552
AG
1To: vim-dev@vim.org
2Subject: Patch 6.2.171
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 6.2.171 (after 6.2.163)
11Problem: The "-or" argument of "find" doesn't work for SysV systems.
12Solution: Use "-o" instead. (Gordon Prieur)
13Files: src/Makefile
14
15
16*** ../vim-6.2.170/src/Makefile Mon Dec 29 20:42:51 2003
17--- src/Makefile Tue Jan 6 16:18:26 2004
18***************
19*** 1724,1730 ****
20 chmod $(FILEMOD) `find $(DEST_MACRO) -type f -print`
21 chmod $(SCRIPTMOD) $(DEST_MACRO)/less.sh
22 # When using CVS some CVS directories might have been copied.
23! cvs=`find $(DEST_MACRO) -name CVS -or -name AAPDIR -print`; \
24 if test -n "$$cvs"; then \
25 rm -rf $$cvs; \
26 fi
27--- 1727,1733 ----
28 chmod $(FILEMOD) `find $(DEST_MACRO) -type f -print`
29 chmod $(SCRIPTMOD) $(DEST_MACRO)/less.sh
30 # When using CVS some CVS directories might have been copied.
31! cvs=`find $(DEST_MACRO) -name CVS -o -name AAPDIR -print`; \
32 if test -n "$$cvs"; then \
33 rm -rf $$cvs; \
34 fi
35***************
36*** 1751,1757 ****
37 # install the runtime tools
38 $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS)
39 # When using CVS some CVS directories might have been copied.
40! cvs=`find $(DEST_TOOLS) -name CVS -or -name AAPDIR -print`; \
41 if test -n "$$cvs"; then \
42 rm -rf $$cvs; \
43 fi
44--- 1754,1760 ----
45 # install the runtime tools
46 $(INSTALL_DATA_R) $(TOOLSSOURCE)/* $(DEST_TOOLS)
47 # When using CVS some CVS directories might have been copied.
48! cvs=`find $(DEST_TOOLS) -name CVS -o -name AAPDIR -print`; \
49 if test -n "$$cvs"; then \
50 rm -rf $$cvs; \
51 fi
52*** ../vim-6.2.170/src/version.c Mon Dec 29 21:21:52 2003
53--- src/version.c Tue Jan 6 16:19:37 2004
54***************
55*** 639,640 ****
56--- 639,642 ----
57 { /* Add new patch number below this line */
58+ /**/
59+ 171,
60 /**/
61
62--
63hundred-and-one symptoms of being an internet addict:
641 49. You find your computer sexier than your girlfriend
65
66 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
67/// Sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
68\\\ Project leader for A-A-P -- http://www.A-A-P.org ///
69 \\\ Help AIDS victims, buy here: http://ICCF-Holland.org/click1.html ///
This page took 0.069943 seconds and 4 git commands to generate.