texinfo-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

texinfo ChangeLog info/filesys.c


From: Karl Berry
Subject: texinfo ChangeLog info/filesys.c
Date: Sun, 25 Oct 2009 18:29:00 +0000

CVSROOT:        /sources/texinfo
Module name:    texinfo
Changes by:     Karl Berry <karl>       09/10/25 18:29:00

Modified files:
        .              : ChangeLog 
        info           : filesys.c 

Log message:
        use gzip -d instead of gunzip, from ant_diaz

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/texinfo/ChangeLog?cvsroot=texinfo&r1=1.1015&r2=1.1016
http://cvs.savannah.gnu.org/viewcvs/texinfo/info/filesys.c?cvsroot=texinfo&r1=1.14&r2=1.15

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/texinfo/texinfo/ChangeLog,v
retrieving revision 1.1015
retrieving revision 1.1016
diff -u -b -r1.1015 -r1.1016
--- ChangeLog   8 Oct 2009 21:49:30 -0000       1.1015
+++ ChangeLog   25 Oct 2009 18:29:00 -0000      1.1016
@@ -1,3 +1,8 @@
+2009-10-25  Karl Berry  <address@hidden>
+
+       * info/filesys.c (compress_suffixes): use gzip -d in preference to
+       gunzip.  From Antonio Diaz Diaz, 22 Oct 2009 17:42:34.
+
 2009-10-08  Karl Berry  <address@hidden>
 
        * util/texi2dvi (catcode_special): default to maybe,

Index: info/filesys.c
===================================================================
RCS file: /sources/texinfo/texinfo/info/filesys.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- info/filesys.c      14 Mar 2009 17:57:42 -0000      1.14
+++ info/filesys.c      25 Oct 2009 18:29:00 -0000      1.15
@@ -1,5 +1,5 @@
 /* filesys.c -- filesystem specific functions.
-   $Id: filesys.c,v 1.14 2009/03/14 17:57:42 karl Exp $
+   $Id: filesys.c,v 1.15 2009/10/25 18:29:00 karl Exp $
 
    Copyright 1993, 1997, 1998, 2000, 2002, 2003, 2004, 2007, 2008, 2009
    Free Software Foundation, Inc.
@@ -54,7 +54,11 @@
 };
 
 static COMPRESSION_ALIST compress_suffixes[] = {
+#if STRIP_DOT_EXE
   { ".gz", "gunzip" },
+#else
+  { ".gz", "gzip -d" },
+#endif
   { ".xz", "unxz" },
   { ".bz2", "bunzip2" },
   { ".z", "gunzip" },




reply via email to

[Prev in Thread] Current Thread [Next in Thread]