]> git.donarmstrong.com Git - debhelper.git/commitdiff
remove enforce_out_of_source_building
authorJoey Hess <joey@gnu.kitenet.net>
Tue, 30 Jun 2009 02:22:21 +0000 (22:22 -0400)
committerJoey Hess <joey@gnu.kitenet.net>
Tue, 30 Jun 2009 02:22:21 +0000 (22:22 -0400)
It was only used by the test suite, and while symetrical I don't
feel that justifies keeping dead code.

Debian/Debhelper/Buildsystem.pm
t/buildsystems/buildsystem_tests

index 209f0705d7b58b6697bfb37174812923ae59473f..9730928d33deed509f778cd6d50482713140c842 100644 (file)
@@ -147,15 +147,6 @@ sub prefer_out_of_source_building {
        }
 }
 
-# Derived class can call this method in its constructor to *enforce*
-# out of source building even if the user didn't request it.
-# Build directory is set to DEFAULT_BUILD_DIRECTORY or building
-# fails if it is not possible to set it
-sub enforce_out_of_source_building {
-       my $this=shift;
-       $this->prefer_out_of_source_building();
-}
-
 # Enhanced version of File::Spec::canonpath. It collapses ..
 # too so it may return invalid path if symlinks are involved.
 # On the other hand, it does not need for the path to exist.
index 7e9b4bf173c2f8228ad2a2895cb21afcf6e3a6f4..7d383157f4459cc43717f3a51f746921dcf163d3 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-use Test::More tests => 236;
+use Test::More tests => 227;
 
 use strict;
 use warnings;
@@ -145,12 +145,6 @@ $bs = $BS_CLASS->new(builddir => undef, sourcedir => "autoconf");
 );
 test_buildsystem_paths_api($bs, "default builddir, sourcedir=autoconf", \%tmp);
 
-# Enforce out of source tree building
-# sourcedir=builddir=autoconf hence default builddir is implied
-$bs = $BS_CLASS->new(builddir => "autoconf", sourcedir => "autoconf/");
-$bs->enforce_out_of_source_building();
-test_buildsystem_paths_api($bs, "hard out of source enforced, sourcedir=builddir", \%tmp);
-
 # sourcedir=autoconf (builddir should be dropped)
 $bs = $BS_CLASS->new(builddir => "autoconf", sourcedir => "autoconf");
 %tmp = (