From 01be5c75becc3abce0e000fa07d18824c7758fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mina=20Gali=C4=87?= Date: Sun, 19 Nov 2023 22:06:18 +0000 Subject: [PATCH] Makefile: use POSIX compatible install arguments install -t doesn't exist on BSD. flip the arguments since we only have one. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3579cf24c..13b92fb90 100644 --- a/Makefile +++ b/Makefile @@ -153,7 +153,7 @@ rcdocs: rclone install: rclone install -d ${DESTDIR}/usr/bin - install -t ${DESTDIR}/usr/bin ${GOPATH}/bin/rclone + install ${GOPATH}/bin/rclone ${DESTDIR}/usr/bin clean: go clean ./...