From 6746d768c607b526f8bc3190f47faad05b908d45 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Wed, 10 Aug 2022 09:27:04 -0700 Subject: [PATCH] Release Landlock Make 1.0 --- third_party/make/config.h | 6 +++--- third_party/make/main.c | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/third_party/make/config.h b/third_party/make/config.h index 14385ed0b..791f9cc26 100644 --- a/third_party/make/config.h +++ b/third_party/make/config.h @@ -644,13 +644,13 @@ #define PACKAGE_BUGREPORT "bug-make@gnu.org" /* Define to the full name of this package. */ -#define PACKAGE_NAME "GNU make" +#define PACKAGE_NAME "Landlock Make" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "GNU make 4.3" +#define PACKAGE_STRING "Landlock Make 1.0 (GNU make 4.3)" /* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "make" +#define PACKAGE_TARNAME "landlockmake" /* Define to the home page for this package. */ #define PACKAGE_URL "http://www.gnu.org/software/make/" diff --git a/third_party/make/main.c b/third_party/make/main.c index db78c19d0..54de3eff8 100644 --- a/third_party/make/main.c +++ b/third_party/make/main.c @@ -783,7 +783,7 @@ handle_runtime_exceptions (struct _EXCEPTION_POINTERS *exinfo) /* turn this on if we want to put stuff in the event log too */ #ifdef USE_EVENT_LOG - hEventSource = RegisterEventSource (NULL, u"GNU Make"); + hEventSource = RegisterEventSource (NULL, u"Landlock Make"); lpszStrings[0] = errmsg; if (hEventSource != NULL) @@ -1051,7 +1051,7 @@ main (int argc, char **argv, char **envp) if (argv[0] == 0) argv[0] = (char *)""; if (argv[0][0] == '\0') - program = "make"; + program = "landlockmake"; else { #if defined(HAVE_DOS_PATHS) @@ -1062,7 +1062,7 @@ main (int argc, char **argv, char **envp) start += 2; if (start[0] == '\0') - program = "make"; + program = "landlockmake"; else { program = start + strlen (start); @@ -2971,7 +2971,7 @@ print_version (void) /* Do it only once. */ return; - printf ("%sGNU Make %s\n", precede, version_string); + printf ("%sLandlock Make 1.0 (GNU Make %s)\n", precede, version_string); if (!remote_description || *remote_description == '\0') printf (_("%sBuilt for %s\n"), precede, make_host);