The branch main has been updated by jhb:

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

commit df607c941f8887b8e68af0e6d349dcf329e74f79
Author:     John Baldwin <j...@freebsd.org>
AuthorDate: 2025-07-28 18:30:59 +0000
Commit:     John Baldwin <j...@freebsd.org>
CommitDate: 2025-07-28 18:31:26 +0000

    stand/i386: Don't include SASRC in .PATH of boot loaders
    
    These link against libsa instead of pulling individual sources from
    the libsa source directory.
    
    Reviewed by:    imp
    Differential Revision:  https://reviews.freebsd.org/D51599
---
 stand/i386/gptboot/Makefile | 2 +-
 stand/i386/isoboot/Makefile | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/stand/i386/gptboot/Makefile b/stand/i386/gptboot/Makefile
index 0f8a64529f90..a829be6c745d 100644
--- a/stand/i386/gptboot/Makefile
+++ b/stand/i386/gptboot/Makefile
@@ -1,6 +1,6 @@
 .include <bsd.init.mk>
 
-.PATH:         ${BOOTSRC}/i386/boot2 ${BOOTSRC}/i386/common ${SASRC}
+.PATH:         ${BOOTSRC}/i386/boot2 ${BOOTSRC}/i386/common
 
 FILES=         gptboot
 MAN=           gptboot.8
diff --git a/stand/i386/isoboot/Makefile b/stand/i386/isoboot/Makefile
index 41c40a72935b..0049e7fd3e0a 100644
--- a/stand/i386/isoboot/Makefile
+++ b/stand/i386/isoboot/Makefile
@@ -1,7 +1,7 @@
 .include <bsd.init.mk>
 
 .PATH:         ${BOOTSRC}/i386/boot2 ${BOOTSRC}/i386/gptboot \
-               ${BOOTSRC}/i386/common ${SASRC}
+               ${BOOTSRC}/i386/common
 
 FILES=         isoboot
 MAN=           isoboot.8

Reply via email to