r361 - in trunk/vim/debian: . patches

Stefano Zacchiroli zack at costa.debian.org
Sun Oct 16 16:21:46 UTC 2005


Author: zack
Date: 2005-10-16 16:21:43 +0000 (Sun, 16 Oct 2005)
New Revision: 361

Added:
   trunk/vim/debian/patches/303_option.c.diff
Modified:
   trunk/vim/debian/changelog
Log:
- patch for the 'empty SHELL' bug
- opened a new UNRELEASED version in debian/changelog


Modified: trunk/vim/debian/changelog
===================================================================
--- trunk/vim/debian/changelog	2005-10-16 15:51:40 UTC (rev 360)
+++ trunk/vim/debian/changelog	2005-10-16 16:21:43 UTC (rev 361)
@@ -1,3 +1,13 @@
+vim (1:6.4-000+2) UNRELEASED; urgency=low
+
+  [ Stefano Zacchiroli ]
+  * Added "sources" debian/rules target which downloads upstream
+    tarballs.
+  * Added patch 303_option.c.diff, which fixes 'system()' behaviour
+    when $SHELL is empty. (closes: #219386)
+
+ -- Stefano Zacchiroli <zack at takhisis.invalid>  Sun, 16 Oct 2005 18:05:07 +0200
+
 vim (1:6.4-000+1) unstable; urgency=low
 
   [ Debian VIM Maintainers ]
@@ -3,7 +13,4 @@
   * New major upstream release (6.4).
 
-  [ Stefano Zacchiroli ]
-  * added "sources" debian/rules target which downloads upstream tarballs
-
  -- Debian VIM Maintainers <pkg-vim-maintainers at lists.alioth.debian.org>  Sat, 15 Oct 2005 18:40:22 +0200
 

Added: trunk/vim/debian/patches/303_option.c.diff
===================================================================
--- trunk/vim/debian/patches/303_option.c.diff	2005-10-16 15:51:40 UTC (rev 360)
+++ trunk/vim/debian/patches/303_option.c.diff	2005-10-16 16:21:43 UTC (rev 361)
@@ -0,0 +1,13 @@
+diff -urN vim64/src/option.c vim64.new/src/option.c
+--- vim64/src/option.c	2005-10-08 16:27:46.000000000 +0200
++++ vim64.new/src/option.c	2005-10-16 17:56:15.007237360 +0200
+@@ -2512,7 +2512,8 @@
+ # endif
+ #endif
+        )
+-	set_string_default("sh", p);
++	if (strlen(p) != 0)
++	    set_string_default("sh", p);
+ 
+ #ifdef FEAT_WILDIGN
+     /*




More information about the pkg-vim-maintainers mailing list