hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 7a3f017376ed8e029f925726cefc6abc93d26fb4
parent c14a0bcf6698cbc99621948c4e3fbf523d55f60f
Author: Kiƫd Llaentenn <kiedtl@tilde.team>
Date:   Thu, 22 Apr 2021 12:13:39 +0000

Move unix/tty/isatty.ha to unix/tty/+linux/isatty.ha

Diffstat:
Mscripts/gen-stdlib | 2+-
Mstdlib.mk | 4++--
Runix/tty/isatty.ha -> unix/tty/+linux/isatty.ha | 0
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/gen-stdlib b/scripts/gen-stdlib @@ -653,7 +653,7 @@ unix_passwd() { unix_tty() { gen_srcs unix::tty \ - isatty.ha \ + '$(PLATFORM)/isatty.ha' \ types.ha \ '$(PLATFORM)/winsize.ha' gen_ssa unix::tty rt io os diff --git a/stdlib.mk b/stdlib.mk @@ -856,7 +856,7 @@ $(HARECACHE)/unix/passwd/unix_passwd.ssa: $(stdlib_unix_passwd_srcs) $(stdlib_rt # unix::tty stdlib_unix_tty_srcs= \ - $(STDLIB)/unix/tty/isatty.ha \ + $(STDLIB)/unix/tty/$(PLATFORM)/isatty.ha \ $(STDLIB)/unix/tty/types.ha \ $(STDLIB)/unix/tty/$(PLATFORM)/winsize.ha @@ -1755,7 +1755,7 @@ $(TESTCACHE)/unix/passwd/unix_passwd.ssa: $(testlib_unix_passwd_srcs) $(testlib_ # unix::tty testlib_unix_tty_srcs= \ - $(STDLIB)/unix/tty/isatty.ha \ + $(STDLIB)/unix/tty/$(PLATFORM)/isatty.ha \ $(STDLIB)/unix/tty/types.ha \ $(STDLIB)/unix/tty/$(PLATFORM)/winsize.ha diff --git a/unix/tty/isatty.ha b/unix/tty/+linux/isatty.ha