diff options
| author | Simon J. Gerraty <sjg@FreeBSD.org> | 2026-04-13 17:38:50 +0000 |
|---|---|---|
| committer | Simon J. Gerraty <sjg@FreeBSD.org> | 2026-04-13 17:38:50 +0000 |
| commit | e272f4a61e78037ec8477ba9e9afcbe3ae2cd8e3 (patch) | |
| tree | c2b0780090c914303eba5308a7af55c6a3daf1dd | |
| parent | bc793ad78734acc4833f8f38bfb505e810c52963 (diff) | |
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
| -rw-r--r-- | contrib/bmake/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/bmake/main.c b/contrib/bmake/main.c index ace5c729be51..15b028a65241 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 /* |
