diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-02 15:38:47 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-02 15:38:47 -0400 |
commit | f34caa3d2dcef44b9cfef5dacc7a0ad684192838 (patch) | |
tree | 10f3abe98cd99dabb1bf459ff05793d884f6f0b5 | |
parent | f723ab6ee1a99e02c6c7817dfc435940b2a943d5 (diff) |
usr: osh: Use project root in build script
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | usr.bin/osh/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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) |