git: ed4fbdda588d - stable/14 - tools/build/make.py: Minor typo fix

From: Ed Maste <emaste_at_FreeBSD.org>
Date: Tue, 06 Aug 2024 21:10:12 UTC
The branch stable/14 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=ed4fbdda588d711d9dc5cb318f01dffa7b0c58b2

commit ed4fbdda588d711d9dc5cb318f01dffa7b0c58b2
Author:     Jose Luis Duran <jlduran@gmail.com>
AuthorDate: 2024-07-25 04:32:33 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-08-06 19:39:52 +0000

    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
    
    (cherry picked from commit d55de30efd09ee011bf4604be1c15ce4155775c1)
---
 tools/build/make.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/build/make.py b/tools/build/make.py
index 5c483e8b45be..5ac99ddb2ee5 100755
--- a/tools/build/make.py
+++ b/tools/build/make.py
@@ -242,7 +242,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