Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Jul 2025 18:31:50 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: df607c941f88 - main - stand/i386: Don't include SASRC in .PATH of boot loaders
Message-ID:  <202507281831.56SIVo9i051466@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb:

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

commit df607c941f8887b8e68af0e6d349dcf329e74f79
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2025-07-28 18:30:59 +0000
Commit:     John Baldwin <jhb@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202507281831.56SIVo9i051466>