mmdvm-flake/MMDVMHost/0001-patch-install-path.patch

17 lines
460 B
Diff
Raw Normal View History

2024-11-05 21:30:44 +01:00
diff --git a/Makefile b/Makefile
index bac0711..0e17fc4 100644
--- a/Makefile
+++ b/Makefile
@@ -30,8 +30,9 @@ RemoteCommand: Log.o RemoteCommand.o UDPSocket.o
.PHONY install:
install: all
- install -m 755 MMDVMHost /usr/local/bin/
- install -m 755 RemoteCommand /usr/local/bin/
+ mkdir -p ${out}/bin
+ install -m 755 MMDVMHost ${out}/bin/
+ install -m 755 RemoteCommand ${out}/bin/
.PHONY install-service:
install-service: install /etc/MMDVM.ini