[interchange-cvs] interchange - jon modified lib/Vend/Config.pm

interchange-core@icdevgroup.org interchange-core@icdevgroup.org
Wed Nov 20 09:46:01 2002


User:      jon
Date:      2002-11-20 14:45:47 GMT
Modified:  lib/Vend Config.pm
Log:
Quell warning in later string concatenation.

Revision  Changes    Path
2.82      +3 -3      interchange/lib/Vend/Config.pm


rev 2.82, prev_rev 2.81
Index: Config.pm
===================================================================
RCS file: /var/cvs/interchange/lib/Vend/Config.pm,v
retrieving revision 2.81
retrieving revision 2.82
diff -u -u -r2.81 -r2.82
--- Config.pm	15 Nov 2002 13:43:10 -0000	2.81
+++ Config.pm	20 Nov 2002 14:45:47 -0000	2.82
@@ -1,6 +1,6 @@
 # Vend::Config - Configure Interchange
 #
-# $Id: Config.pm,v 2.81 2002/11/15 13:43:10 mheins Exp $
+# $Id: Config.pm,v 2.82 2002/11/20 14:45:47 jon Exp $
 #
 # Copyright (C) 1996-2002 Red Hat, Inc. <interchange@redhat.com>
 #
@@ -45,7 +45,7 @@
 use Vend::Util;
 use Vend::Data;
 
-$VERSION = substr(q$Revision: 2.81 $, 10);
+$VERSION = substr(q$Revision: 2.82 $, 10);
 
 my %CDname;
 
@@ -1778,7 +1778,7 @@
 		$name = 'Perl module';
 		$testsub = sub {
 			my $module = shift;
-			my $oldtype;
+			my $oldtype = '';
 			if($module =~ s/\.pl$//) {
 				$oldtype = '.pl';
 			}