Add some more obscure platforms to td build script.

This commit is contained in:
Jordan Bancino 2023-03-01 03:08:53 +00:00
parent e7d1c0d951
commit 755d08946a

View file

@ -47,10 +47,10 @@ fi
mod_time() { mod_time() {
if [ -n "$1" ] && [ -f "$1" ]; then if [ -n "$1" ] && [ -f "$1" ]; then
case "$(uname)" in case "$(uname)" in
Linux|CYGWIN_NT*) Linux|CYGWIN_NT*|Haiku)
stat -c %Y "$1" stat -c %Y "$1"
;; ;;
*BSD|DragonFly) *BSD|DragonFly|Minix)
stat -f %m "$1" stat -f %m "$1"
;; ;;
*) *)