From: Modestas Vainius Date: Mon, 15 Jun 2009 12:53:03 +0000 (+0300) Subject: Fix typo: missing $this. X-Git-Tag: 7.3.0~45 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=cf5803abbcde17f77668cbda82c26448158012bc;p=debhelper.git Fix typo: missing $this. Signed-off-by: Modestas Vainius --- diff --git a/Debian/Debhelper/Buildsystem.pm b/Debian/Debhelper/Buildsystem.pm index 68cb7f5..b7d79c9 100644 --- a/Debian/Debhelper/Buildsystem.pm +++ b/Debian/Debhelper/Buildsystem.pm @@ -261,7 +261,7 @@ sub _cd { sub doit_in_sourcedir { my $this=shift; if ($this->get_sourcedir() ne '.') { - my $sourcedir = get_sourcedir(); + my $sourcedir = $this->get_sourcedir(); my $curdir = Cwd::getcwd(); $this->_cd($sourcedir); doit(@_);