diff mbox series

lrzsz: install symlinks for XMODEM and YMODEM

Message ID 22856a59ac4af71690638f10f2117cd83c853928.1527184278.git.baruch@tkos.co.il
State Accepted
Commit 6697e59403cfd837f4b07e44a89c3ce0d5db417b
Headers show
Series lrzsz: install symlinks for XMODEM and YMODEM | expand

Commit Message

Baruch Siach May 24, 2018, 5:51 p.m. UTC
This sets the protocol choice according to the program invocation name.
That is the common lrzsz installation practice.

Cc: Matthew Starr <mstarr@hedonline.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/lrzsz/lrzsz.mk | 4 ++++
 1 file changed, 4 insertions(+)

Comments

Peter Korsgaard May 24, 2018, 9:12 p.m. UTC | #1
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > This sets the protocol choice according to the program invocation name.
 > That is the common lrzsz installation practice.

 > Cc: Matthew Starr <mstarr@hedonline.com>
 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed, thanks.
Peter Korsgaard June 11, 2018, 9:13 p.m. UTC | #2
>>>>> "Baruch" == Baruch Siach <baruch@tkos.co.il> writes:

 > This sets the protocol choice according to the program invocation name.
 > That is the common lrzsz installation practice.

 > Cc: Matthew Starr <mstarr@hedonline.com>
 > Signed-off-by: Baruch Siach <baruch@tkos.co.il>

Committed to 2018.02.x, thanks.
diff mbox series

Patch

diff --git a/package/lrzsz/lrzsz.mk b/package/lrzsz/lrzsz.mk
index 5dac07a2953e..25ecf3deade0 100644
--- a/package/lrzsz/lrzsz.mk
+++ b/package/lrzsz/lrzsz.mk
@@ -24,6 +24,10 @@  define LRZSZ_INSTALL_TARGET_CMDS
 	$(INSTALL) -m 0755 -D $(@D)/src/lsz $(TARGET_DIR)/usr/bin/sz
 	ln -sf rz $(TARGET_DIR)/usr/bin/lrz
 	ln -sf sz $(TARGET_DIR)/usr/bin/lsz
+	ln -sf rz $(TARGET_DIR)/usr/bin/rb
+	ln -sf sz $(TARGET_DIR)/usr/bin/sb
+	ln -sf rz $(TARGET_DIR)/usr/bin/rx
+	ln -sf sz $(TARGET_DIR)/usr/bin/sx
 endef
 
 $(eval $(autotools-package))