From f34caa3d2dcef44b9cfef5dacc7a0ad684192838 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 2 May 2025 15:38:47 -0400 Subject: usr: osh: Use project root in build script Signed-off-by: Ian Moffett --- usr.bin/osh/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/osh') diff --git a/usr.bin/osh/Makefile b/usr.bin/osh/Makefile index 28981fe..1505412 100644 --- a/usr.bin/osh/Makefile +++ b/usr.bin/osh/Makefile @@ -2,5 +2,5 @@ include user.mk CFILES = $(shell find . -name "*.c") -osh: - $(CC) $(CFILES) -o $@ $(INTERNAL_CFLAGS) +$(ROOT)/base/usr/bin/osh: + gcc $(CFILES) -o $@ $(INTERNAL_CFLAGS) -- cgit v1.2.3