summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/cmake.pm
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 /Debian/Debhelper/Buildsystem/cmake.pm
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 'Debian/Debhelper/Buildsystem/cmake.pm')
-rw-r--r--Debian/Debhelper/Buildsystem/cmake.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/Debian/Debhelper/Buildsystem/cmake.pm b/Debian/Debhelper/Buildsystem/cmake.pm
index 057f327b..c2a3769d 100644
--- a/Debian/Debhelper/Buildsystem/cmake.pm
+++ b/Debian/Debhelper/Buildsystem/cmake.pm
@@ -1,5 +1,5 @@
-# A buildsystem plugin for handling CMake based projects.
-# It enforces out of source tree building.
+# A debhelper build system class for handling CMake based projects.
+# It prefers out of source tree building.
#
# Copyright: © 2008-2009 Modestas Vainius
# License: GPL-2+
@@ -25,7 +25,7 @@ sub new {
my $class=shift;
my $this=$class->SUPER::new(@_);
my %args=@_;
- # Enforce out of source tree building (soft mode).
+ # Prefer out of source tree building.
$this->enforce_out_of_source_building($args{builddir});
return $this;
}