Page MenuHomeFreeBSD

Makefile: Fix MAKEOBJDIRPREFIX command-line variable check for bmake
ClosedPublic

Authored by jrtc27 on Jul 4 2021, 12:19 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 15, 11:25 AM
Unknown Object (File)
Mon, Mar 31, 11:01 PM
Unknown Object (File)
Mar 12 2025, 10:26 PM
Unknown Object (File)
Feb 26 2025, 4:55 AM
Unknown Object (File)
Feb 23 2025, 11:56 PM
Unknown Object (File)
Feb 18 2025, 9:26 PM
Unknown Object (File)
Feb 17 2025, 9:15 PM
Unknown Object (File)
Feb 2 2025, 7:54 AM
Subscribers

Details

Summary

Unlike the old fmake, running make FOO=bar when using bmake doesn't put
FOO=bar in .MAKEFLAGS at the top level, it instead just puts FOO in
.MAKEOVERRIDES and the full MAKEFLAGS will be formed for sub-makes.
Moreover, this only applies for sub-makes in rules, so this doesn't
apply to those in shell assignments. This means that the current check
does not catch make MAKEOBJDIRPREFIX=..., only those defined in config
files. Thus we must also check .MAKEOVERRIDES explicitly.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable