INN commit: branches/2.5 (5 files)

INN Commit rra at isc.org
Sun Nov 17 20:25:20 UTC 2013


    Date: Sunday, November 17, 2013 @ 12:25:20
  Author: iulius
Revision: 9568

fix the path to simpleftp in innshellvars and INN::Config

When neither wget nor ncftpget nor ncftp was found at configure
time, the path to the simpleftp substitution program shipped with
INN was not proprely set in innshellvars, innshellvars.pl, and
the INN::Config Perl module.  
  
Thanks to Christian Garbs for the bug report.

Modified:
  branches/2.5/CONTRIBUTORS
  branches/2.5/doc/pod/news.pod
  branches/2.5/perl/INN/Config.pm.in
  branches/2.5/scripts/innshellvars.in
  branches/2.5/scripts/innshellvars.pl.in

----------------------------+
 CONTRIBUTORS               |    2 +-
 doc/pod/news.pod           |    8 ++++++++
 perl/INN/Config.pm.in      |    2 +-
 scripts/innshellvars.in    |    2 +-
 scripts/innshellvars.pl.in |    2 +-
 5 files changed, 12 insertions(+), 4 deletions(-)

Modified: CONTRIBUTORS
===================================================================
--- CONTRIBUTORS	2013-11-17 20:24:35 UTC (rev 9567)
+++ CONTRIBUTORS	2013-11-17 20:25:20 UTC (rev 9568)
@@ -275,4 +275,4 @@
 Lars Magne Ingebrigtsen, Sam Varshavchik, Matthew Vernon, Ian Jackson,
 Edmund H. Ramm, Raphael Barrois, Bo Lindbergh, Matthias Meyser,
 Dennis Preiser, Paolo Amoroso, Dennis Davis, River Tarnell, Jochen Schmitt,
-Tim Fardell, Remco Rijnders, David Binderman, Tony Evans
+Tim Fardell, Remco Rijnders, David Binderman, Tony Evans, Christian Garbs

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod	2013-11-17 20:24:35 UTC (rev 9567)
+++ doc/pod/news.pod	2013-11-17 20:25:20 UTC (rev 9568)
@@ -52,6 +52,14 @@
 
 =item *
 
+When neither B<wget> nor B<ncftpget> nor B<ncftp> was found at configure
+time, the path to the B<simpleftp> substitution program shipped with
+INN was not proprely set in B<innshellvars>, B<innshellvars.pl>, and
+the C<INN::Config> Perl module.  Thanks to Christian Garbs for the
+bug report.
+
+=item *
+
 B<ckpasswd> no longer tries to use the ndbm compatibility layer provided
 by S<Berkeley DB> if S<Berkeley DB> has been built without ndbm support.
 Also add support for gdbm libraries in B<ckpasswd>.

Modified: perl/INN/Config.pm.in
===================================================================
--- perl/INN/Config.pm.in	2013-11-17 20:24:35 UTC (rev 9567)
+++ perl/INN/Config.pm.in	2013-11-17 20:25:20 UTC (rev 9568)
@@ -124,7 +124,7 @@
 our $pgp = '@PGP@';
 our $sed = '@SED@';
 our $sort = '@SORT@';
-our $getftp = '@PATH_GETFTP@';
+our $getftp = "@PATH_GETFTP@";
 our $uustat = '@UUSTAT@';
 our $uux = '@UUX@';
 

Modified: scripts/innshellvars.in
===================================================================
--- scripts/innshellvars.in	2013-11-17 20:24:35 UTC (rev 9567)
+++ scripts/innshellvars.in	2013-11-17 20:25:20 UTC (rev 9568)
@@ -81,7 +81,7 @@
 GPGV='@GPGV@'
 PGP='@PGP@'
 SORT='@SORT@'
-GETFTP='@PATH_GETFTP@'
+GETFTP="@PATH_GETFTP@"
 UUSTAT='@UUSTAT@'
 UUX='@UUX@'
 

Modified: scripts/innshellvars.pl.in
===================================================================
--- scripts/innshellvars.pl.in	2013-11-17 20:24:35 UTC (rev 9567)
+++ scripts/innshellvars.pl.in	2013-11-17 20:25:20 UTC (rev 9568)
@@ -93,7 +93,7 @@
 $gpgv = '@GPGV@' ;
 $pgp = '@PGP@' ;
 $sort = '@SORT@' ;
-$getftp = '@PATH_GETFTP@' ;
+$getftp = "@PATH_GETFTP@" ;
 $uustat = '@UUSTAT@' ;
 $uux = '@UUX@' ;
 



More information about the inn-committers mailing list