diff options
author | Modestas Vainius <modestas@vainius.eu> | 2009-06-15 15:53:03 +0300 |
---|---|---|
committer | Modestas Vainius <modestas@vainius.eu> | 2009-06-15 15:53:03 +0300 |
commit | cf5803abbcde17f77668cbda82c26448158012bc (patch) | |
tree | 0e58607b88e61240c5c2e4f62ad919bbf9cf4b62 | |
parent | d5e82a031c4aa57091c459d8c05cd278433e7c8b (diff) | |
download | debhelper-cf5803abbcde17f77668cbda82c26448158012bc.tar.gz |
Fix typo: missing $this.
Signed-off-by: Modestas Vainius <modestas@vainius.eu>
-rw-r--r-- | Debian/Debhelper/Buildsystem.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem.pm b/Debian/Debhelper/Buildsystem.pm index 68cb7f5c..b7d79c9e 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(@_); |