From ea383ca972213bdda50226c536e3224a361904b8 Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 8 Apr 2002 15:47:57 +0000 Subject: r517: * Fixed an uninitialized value warning, Closes: #141729 --- Debian/Debhelper/Dh_Lib.pm | 2 +- debian/changelog | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Debian/Debhelper/Dh_Lib.pm b/Debian/Debhelper/Dh_Lib.pm index b566724d..81ef6cae 100644 --- a/Debian/Debhelper/Dh_Lib.pm +++ b/Debian/Debhelper/Dh_Lib.pm @@ -388,7 +388,7 @@ sub addsubstvar { my $ext=pkgext($package); my $substvarfile="debian/${ext}substvars"; my $str=$deppackage; - $str.=" ($verinfo)" if length $verinfo; + $str.=" ($verinfo)" if defined $verinfo && length $verinfo; # Figure out what the line will look like, based on what's there # now, and what we're to add or remove. diff --git a/debian/changelog b/debian/changelog index bd5a9ac2..abb70c7e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +debhelper (3.4.14) unstable; urgency=low + + * Fixed an uninitialized value warning, Closes: #141729 + + -- Joey Hess Mon, 8 Apr 2002 11:45:02 -0400 + debhelper (3.4.13) unstable; urgency=low * Typo, Closes: #139176 -- cgit v1.2.3