forked from TrueCloudLab/rclone
Makefile: use POSIX compatible install arguments
install -t doesn't exist on BSD. flip the arguments since we only have one.
This commit is contained in:
parent
20bd17f107
commit
01be5c75be
1 changed files with 1 additions and 1 deletions
2
Makefile
2
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 ./...
|
||||
|
|
Loading…
Add table
Reference in a new issue