summaryrefslogtreecommitdiff
path: root/tests/run_make_tests.pl
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2023-01-01 16:25:39 -0500
committerPaul Smith <psmith@gnu.org>2023-01-01 17:05:12 -0500
commite7ce3a655e3e125a92e1c95f483675770be7f3bc (patch)
treebd227b966f805e4d85834104630569bf27f937dd /tests/run_make_tests.pl
parentc580ebae8df0b1235b9287a59b9a3ab8c2bf9dfe (diff)
downloadmake-git-e7ce3a655e3e125a92e1c95f483675770be7f3bc.tar.gz
Convert references from "GNU make" to "GNU Make"
Diffstat (limited to 'tests/run_make_tests.pl')
-rw-r--r--tests/run_make_tests.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/run_make_tests.pl b/tests/run_make_tests.pl
index 20e1e967..1017cb44 100644
--- a/tests/run_make_tests.pl
+++ b/tests/run_make_tests.pl
@@ -56,7 +56,7 @@ $memcheck_args = '--num-callers=15 --tool=memcheck --leak-check=full --suppressi
$massif_args = '--num-callers=15 --tool=massif --alloc-fn=xmalloc --alloc-fn=xcalloc --alloc-fn=xrealloc --alloc-fn=xstrdup --alloc-fn=xstrndup';
$pure_log = undef;
-# The location of the GNU make source directory
+# The location of the GNU Make source directory
$srcdir = undef;
$fqsrcdir = undef;
$srcvol = undef;
@@ -128,7 +128,7 @@ sub valid_option
if ($option =~ /^-srcdir$/i) {
$srcdir = shift @argv;
if (! -f File::Spec->catfile($srcdir, 'src', 'gnumake.h')) {
- print "$option $srcdir: Not a valid GNU make source directory.\n";
+ print "$option $srcdir: Not a valid GNU Make source directory.\n";
exit 1;
}
return 1;
@@ -601,7 +601,7 @@ sub set_more_defaults
}
$string = `$make_path -v`;
- $string =~ /^(GNU Make [^,\n]*)/ or die "$make_path is not GNU make. Version:\n$string";
+ $string =~ /^(GNU Make [^,\n]*)/ or die "$make_path is not GNU Make. Version:\n$string";
$testee_version = "$1\n";
create_file('null.mk', '');