]> git.donarmstrong.com Git - debhelper.git/blobdiff - Debian/Debhelper/Buildsystem/cmake.pm
Some cosmetic changes in the comments and strings.
[debhelper.git] / Debian / Debhelper / Buildsystem / cmake.pm
index 057f327b2e0050945faa042521485138adc2e636..c2a3769dd37ce78de15eb22ae3b58bcba51a7130 100644 (file)
@@ -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;
 }