1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 20:25:28 +03:00
aports/testing/witchery/correct-install-location.patch
psykose eee33c09cb
testing/witchery: fix install location
this only installed a file as usr/bin and was unusable
2022-05-17 13:22:16 +02:00

9 lines
304 B
Diff

--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,3 @@
install:
- install -Dm755 witchery-buildapk ${DESTDIR}/usr/bin
- install -Dm755 witchery-compose ${DESTDIR}/usr/bin
\ No newline at end of file
+ install -Dm755 witchery-buildapk -t ${DESTDIR}/usr/bin
+ install -Dm755 witchery-compose -t ${DESTDIR}/usr/bin