From df607c941f8887b8e68af0e6d349dcf329e74f79 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 28 Jul 2025 14:30:59 -0400 Subject: [PATCH] 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 0f8a64529f9..a829be6c745 100644 --- a/stand/i386/gptboot/Makefile +++ b/stand/i386/gptboot/Makefile @@ -1,6 +1,6 @@ .include -.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 41c40a72935..0049e7fd3e0 100644 --- a/stand/i386/isoboot/Makefile +++ b/stand/i386/isoboot/Makefile @@ -1,7 +1,7 @@ .include .PATH: ${BOOTSRC}/i386/boot2 ${BOOTSRC}/i386/gptboot \ - ${BOOTSRC}/i386/common ${SASRC} + ${BOOTSRC}/i386/common FILES= isoboot MAN= isoboot.8