diff options
author | joey <joey> | 2002-04-08 15:47:57 +0000 |
---|---|---|
committer | joey <joey> | 2002-04-08 15:47:57 +0000 |
commit | ea383ca972213bdda50226c536e3224a361904b8 (patch) | |
tree | 56740977e7d6a6fcd56ae0a15437e4c9a2ece345 | |
parent | cb70a3cff0f92817bbaaaa6f7270110c93883dec (diff) | |
download | debhelper-ea383ca972213bdda50226c536e3224a361904b8.tar.gz |
r517: * Fixed an uninitialized value warning, Closes: #141729
-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 |