]> git.donarmstrong.com Git - debhelper.git/blobdiff - Debian/Debhelper/Buildsystem/makefile.pm
Use the term "build step" instead of "build action" everywhere in the source.
[debhelper.git] / Debian / Debhelper / Buildsystem / makefile.pm
index 244ef30d7c062ff95385e6b65780b0438ccc1b04..4f15152bd49fe0a31ff4f9100bc4f241397b81f5 100644 (file)
@@ -55,10 +55,10 @@ sub new {
 
 sub check_auto_buildable {
        my $this=shift;
-       my ($action) = @_;
+       my ($step) = @_;
 
        # Handles build, test, install, clean; configure - next class
-       if (grep /^\Q$action\E$/, qw{build test install clean}) {
+       if (grep /^\Q$step\E$/, qw{build test install clean}) {
                # This is always called in the source directory, but generally
                # Makefiles are created (or live) in the the build directory.
                return -e $this->get_buildpath("Makefile") ||