summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2013-06-04 11:22:51 -0400
committerJoey Hess <joey@kitenet.net>2013-06-04 11:22:51 -0400
commitd188caa717f3d472cfd81701c543e7dddf79c68b (patch)
treeab390f5bf0c32b65ea4b3c8969a826218c7d5918
parent2849f4e33bc6ae46335f64d62d33c73e606f7c41 (diff)
Correct broken patch for #706923. Closes: #707481
-rw-r--r--Debian/Debhelper/Buildsystem/makefile.pm3
-rw-r--r--debian/changelog2
2 files changed, 4 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/makefile.pm b/Debian/Debhelper/Buildsystem/makefile.pm
index 8d0def15..ec52d8b4 100644
--- a/Debian/Debhelper/Buildsystem/makefile.pm
+++ b/Debian/Debhelper/Buildsystem/makefile.pm
@@ -11,7 +11,8 @@ use Debian::Debhelper::Dh_Lib qw(escape_shell clean_jobserver_makeflags);
use base 'Debian::Debhelper::Buildsystem';
sub exists_make_target {
- my ($this, $target) = @_;
+ my $this=shift;
+ my $target=shift;
# Use make -n to check to see if the target would do
# anything. There's no good way to test if a target exists.
diff --git a/debian/changelog b/debian/changelog
index 43975a2f..a4cd5add 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,8 @@ debhelper (9.20130519) UNRELEASED; urgency=low
html2text's reign of terror has ended. Closes: #562874
* Allow building debhelper with USE_NLS=no to not require po4a to build.
Closes: #709557
+ * Correct broken patch for #706923.
+ Closes: #707481
-- Joey Hess <joeyh@debian.org> Fri, 24 May 2013 11:08:12 -0400