]> git.donarmstrong.com Git - debhelper.git/blobdiff - Debian/Debhelper/Buildsystem/cmake.pm
debhelper modular buildsystems (try 3).
[debhelper.git] / Debian / Debhelper / Buildsystem / cmake.pm
index ff24824902494137ce262161b42d6e5cf490b8cd..1b5dda402cad048e25d06b8256448c860ebf3bf1 100644 (file)
@@ -14,11 +14,11 @@ sub DESCRIPTION {
        "support for building CMake based packages (outside-source tree only)"
 }
 
-sub is_auto_buildable {
+sub check_auto_buildable {
        my $self=shift;
        my ($action)=@_;
        my $ret = -e "CMakeLists.txt";
-       $ret &&= $self->SUPER::is_auto_buildable(@_) if $action ne "configure";
+       $ret &&= $self->SUPER::check_auto_buildable(@_) if $action ne "configure";
        return $ret;
 }