diff options
author | Ian Moffett <ian@osmora.org> | 2025-05-04 00:52:45 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-05-04 00:52:45 -0400 |
commit | 9adc9f74d66366e72d83a2ca9142c394f5ad5e2c (patch) | |
tree | cba2e677967dd4e22fbe1488c071ef5605a27262 /usr.bin/osh | |
parent | 686747bea40b4c01243ffcca2c830686fcf96d8e (diff) | |
parent | 2e7a8f3592dc4023256a2e2fcb95f710207d6bdc (diff) |
Merge branch 'build-openbsd' into expt
Diffstat (limited to 'usr.bin/osh')
-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) |