r475 - trunk/vim/debian

Pierre Habouzit madcoder at costa.debian.org
Fri Jan 20 10:16:38 UTC 2006


Author: madcoder
Date: 2006-01-20 10:16:36 +0000 (Fri, 20 Jan 2006)
New Revision: 475

Modified:
   trunk/vim/debian/changelog
   trunk/vim/debian/rules
Log:
fix the missing svn.vim thing

Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2006-01-19 17:31:07 UTC (rev 474)
+++ trunk/vim/debian/changelog	2006-01-20 10:16:36 UTC (rev 475)
@@ -9,8 +9,10 @@
   * vim's syntax coloring mode should consider .sce extension.
     (Closes: #338771)
   * subversion commit log syntax and l10n. (Closes: #341288)
+  * debian/rules : dh_install -X.svn is incorrect, as it matches .../svn.vim.
+    uses dh_install -X\\.svn instread. (Closes: #348955)
 
- -- Pierre Habouzit <madcoder at debian.org>  Mon, 16 Jan 2006 10:57:31 +0100
+ -- Pierre Habouzit <madcoder at debian.org>  Fri, 20 Jan 2006 11:06:50 +0100
 
 vim (1:6.4-006+2) unstable; urgency=low
 

Modified: trunk/vim/debian/rules
===================================================================
--- trunk/vim/debian/rules	2006-01-19 17:31:07 UTC (rev 474)
+++ trunk/vim/debian/rules	2006-01-20 10:16:36 UTC (rev 475)
@@ -307,7 +307,7 @@
 		debian/lintian/vim-variant > debian/lintian/vim
 
 	dh_installman
-	dh_install -X.svn --fail-missing
+	dh_install -X\\.svn --fail-missing
 	 # evim is GUI related, move its manpage to vim-gui-common
 	mv debian/{vim-common,vim-gui-common}/usr/share/man/man1/evim.1
 	dh_link
@@ -342,7 +342,7 @@
 	if [ "$*" = "vim-tiny" ]; then \
 		echo "debian/tiny/doc/	usr/share/vim/" >> debian/$*.install; \
 	fi
-	dh_install -X.svn
+	dh_install -X\\.svn
 	dh_link
 
 	touch $@




More information about the pkg-vim-maintainers mailing list