mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-21 18:50:50 +01:00
tools/build/make.py: Minor typo fix
If the object directory prefix does not exist, make.py previously exited with a message indicating that the chosen prefix does not exit. Reviewed by: emaste Pull request: https://github.com/freebsd/freebsd-src/pull/1348
This commit is contained in:
parent
b3cec803ea
commit
d55de30efd
@ -243,7 +243,7 @@ if __name__ == "__main__":
|
||||
sys.exit("MAKEOBJDIRPREFIX is not set, cannot continue!")
|
||||
if not Path(MAKEOBJDIRPREFIX).is_dir():
|
||||
sys.exit(
|
||||
"Chosen MAKEOBJDIRPREFIX=" + MAKEOBJDIRPREFIX + " doesn't exit!")
|
||||
"Chosen MAKEOBJDIRPREFIX=" + MAKEOBJDIRPREFIX + " doesn't exist!")
|
||||
objdir_prefix = Path(MAKEOBJDIRPREFIX).absolute()
|
||||
source_root = Path(__file__).absolute().parent.parent.parent
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user