From e272f4a61e78037ec8477ba9e9afcbe3ae2cd8e3 Mon Sep 17 00:00:00 2001 From: "Simon J. Gerraty" Date: Mon, 13 Apr 2026 10:38:50 -0700 Subject: [PATCH] Fix default for .MAKE.SAVE_DOLLARS NetBSD make defaults this to "yes", bmake defauts it to "no" to retain the traditional behavior. The default is dealt with in bmake's Makefile but that does not address boot-strap. For now, just change the ifdef in main. PR: 294436 --- contrib/bmake/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bmake/main.c b/contrib/bmake/main.c index ace5c729be5..15b028a6524 100644 --- a/contrib/bmake/main.c +++ b/contrib/bmake/main.c @@ -1315,7 +1315,7 @@ ReadFirstDefaultMakefile(void) } #ifndef MAKE_SAVE_DOLLARS_DEFAULT -# define MAKE_SAVE_DOLLARS_DEFAULT "yes" +# define MAKE_SAVE_DOLLARS_DEFAULT "no" #endif /*