summaryrefslogtreecommitdiff
path: root/t/buildsystems
diff options
context:
space:
mode:
authorModestas Vainius <modestas@vainius.eu>2009-06-15 16:20:11 +0300
committerModestas Vainius <modestas@vainius.eu>2009-06-17 22:44:31 +0300
commit95f0a0968c30a6737c3f321f305985b3fd33a63e (patch)
treee0bf3bd0f3745792682e7f4397c7f7b84072761b /t/buildsystems
parent49b64c7852744f54250121b1c60544e1f5de70b6 (diff)
Some cosmetic changes in the comments and strings.
* buildsystem -> build system * dh_auto build system -> debhelper build system * plugin -> class * a few rewording changes in the comments. * Enhance python_distutils::DESCRIPTION().
Diffstat (limited to 't/buildsystems')
-rwxr-xr-xt/buildsystems/buildsystem_tests4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/buildsystems/buildsystem_tests b/t/buildsystems/buildsystem_tests
index 031828b7..42d7f584 100755
--- a/t/buildsystems/buildsystem_tests
+++ b/t/buildsystems/buildsystem_tests
@@ -139,7 +139,7 @@ $bs = $BS_CLASS->new(builddir => undef, sourcedir => "autoconf");
);
test_buildsystem_paths_api($bs, "default builddir, sourcedir=autoconf", \%tmp);
-# Enforce "hard" out of source tree building
+# 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();
@@ -160,7 +160,7 @@ $bs = $BS_CLASS->new(builddir => "autoconf", sourcedir => "autoconf");
);
test_buildsystem_paths_api($bs, "no builddir, sourcedir=autoconf", \%tmp);
-# Enforce "soft" out of source tree building when
+# Prefer out of source tree building when
# sourcedir=builddir=autoconf hence builddir should be dropped.
$bs->enforce_out_of_source_building("autoconf");
test_buildsystem_paths_api($bs, "soft out of source enforced, sourcedir=builddir", \%tmp);