Convert references from "GNU make" to "GNU Make"

This commit is contained in:
Paul Smith
2023-01-01 16:25:39 -05:00
parent c580ebae8d
commit e7ce3a655e
49 changed files with 153 additions and 153 deletions

View File

@@ -1,6 +1,6 @@
# -*-mode: perl-*-
$description = "Test GNU make's archive management features.";
$description = "Test GNU Make's archive management features.";
$details = "\
This only works on systems that support it.";
@@ -41,7 +41,7 @@ my $arvar = "AR=$ar";
# Newer versions of binutils can be built with --enable-deterministic-archives
# which forces all timestamps (among other things) to always be 0, defeating
# GNU make's archive support. See if ar supports the U option to disable it.
# GNU Make's archive support. See if ar supports the U option to disable it.
unlink('libxx.a');
$_ = `$ar ${arflags}U libxx.a a1.o $redir`;
if ($? == 0) {

View File

@@ -1,7 +1,7 @@
# -*-perl-*-
$description = "Check GNU make conditionals.";
$description = "Check GNU Make conditionals.";
$details = "Attempt various different flavors of GNU make conditionals.";
$details = "Attempt various different flavors of GNU Make conditionals.";
run_make_test('
arg1 = first

View File

@@ -1,5 +1,5 @@
# -*-perl-*-
$description = "Check GNU make export/unexport commands.";
$description = "Check GNU Make export/unexport commands.";
$details = "";

View File

@@ -1,6 +1,6 @@
# -*-mode: perl-*-
$description = "Test various forms of the GNU make 'include' command.";
$description = "Test various forms of the GNU Make 'include' command.";
$details = "\
Test include, -include, sinclude and various regressions involving them.

View File

@@ -1,6 +1,6 @@
# -*-mode: perl-*-
$description = "Test GNU make's auto-reinvocation feature.";
$description = "Test GNU Make's auto-reinvocation feature.";
$details = "\
If the makefile or one it includes can be rebuilt then it is, and make

View File

@@ -2,7 +2,7 @@
$description = "Test the eval function.";
$details = "This is a test of the eval function in GNU make.
$details = "This is a test of the eval function in GNU Make.
This function will evaluate inline makefile syntax and incorporate the
results into its internal database.\n";

View File

@@ -2,7 +2,7 @@
$description = "Test the value function.";
$details = "This is a test of the value function in GNU make.
$details = "This is a test of the value function in GNU Make.
This function will evaluate to the value of the named variable with no
further expansion performed on it.\n";

View File

@@ -1,6 +1,6 @@
# -*-perl-*-
$description = "Test the -C option to GNU make.";
$description = "Test the -C option to GNU Make.";
use File::Spec;

View File

@@ -1,6 +1,6 @@
# -*-perl-*-
$description = "Test the -w option to GNU make.";
$description = "Test the -w option to GNU Make.";
my $enter = "#MAKE#: Entering directory '#PWD#'";
my $leave = "#MAKE#: Leaving directory '#PWD#'";

View File

@@ -15,7 +15,7 @@ all: ; \@#HELPER# -q fail 1; true
# User settings must override .POSIX
# In the standard .POSIX must be the first thing in the makefile
# but we relax that rule in GNU make.
# but we relax that rule in GNU Make.
run_make_test(qq!
.SHELLFLAGS = -xc
.POSIX:

View File

@@ -36,7 +36,7 @@ run_make_test("SHELL := $altshell\n".'
all:;@echo "$(SHELL) $$SHELL"
', '', "$altshell $mshell");
# As a GNU make extension, if make's SHELL variable is explicitly exported,
# As a GNU Make extension, if make's SHELL variable is explicitly exported,
# then we really _DO_ export it.
$ENV{SHELL} = $mshell;

View File

@@ -1,6 +1,6 @@
# -*-perl-*-
$description = "Test special GNU make variables.";
$description = "Test special GNU Make variables.";
$details = "";

View File

@@ -1,6 +1,6 @@
# -*-mode: perl-*-
$description = "Test GNU make's VMS Library management features.";
$description = "Test GNU Make's VMS Library management features.";
$details = "\
This only works on VMS systems.";