From 755d08946a44f69a56be82208448af7160359e7a Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Wed, 1 Mar 2023 03:08:53 +0000 Subject: [PATCH] Add some more obscure platforms to td build script. --- tools/bin/td | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bin/td b/tools/bin/td index 96981d4..66cb796 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -47,10 +47,10 @@ fi mod_time() { if [ -n "$1" ] && [ -f "$1" ]; then case "$(uname)" in - Linux|CYGWIN_NT*) + Linux|CYGWIN_NT*|Haiku) stat -c %Y "$1" ;; - *BSD|DragonFly) + *BSD|DragonFly|Minix) stat -f %m "$1" ;; *)