]> git.donarmstrong.com Git - debhelper.git/blobdiff - Debian/Debhelper/Buildsystem/python_distutils.pm
Less code in the build system classes to call enforce_out_of_source_building().
[debhelper.git] / Debian / Debhelper / Buildsystem / python_distutils.pm
index d05e381527655587aa0a1d4aee64bb8482560b23..ad4ea877598cd1db34c71cd59bc271bad0c3eef8 100644 (file)
@@ -24,9 +24,8 @@ sub DEFAULT_BUILD_DIRECTORY {
 sub new {
        my $class=shift;
        my $this=$class->SUPER::new(@_);
-       my %args=@_;
        # Out of source tree building is prefered.
-       $this->enforce_out_of_source_building($args{builddir});
+       $this->enforce_out_of_source_building(@_);
        return $this;
 }