diff options
-rw-r--r-- | Debian/Debhelper/Dh_Lib.pm | 2 | ||||
-rw-r--r-- | debian/changelog | 6 |
2 files changed, 7 insertions, 1 deletions
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 <joeyh@debian.org> Mon, 8 Apr 2002 11:45:02 -0400 + debhelper (3.4.13) unstable; urgency=low * Typo, Closes: #139176 |