summaryrefslogtreecommitdiff
path: root/Debian
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 /Debian
parent2849f4e33bc6ae46335f64d62d33c73e606f7c41 (diff)
Correct broken patch for #706923. Closes: #707481
Diffstat (limited to 'Debian')
-rw-r--r--Debian/Debhelper/Buildsystem/makefile.pm3
1 files changed, 2 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.