From bc3219e48420ce4a9ee2fffe995214cb56f63bc8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 20 Nov 2010 00:27:34 -0500 Subject: lrzsz: add lrz/lsz symlinks Many systems support automatic zmodem transfers without needing to first manually run the zmodem utils. But the expectation is to run `lrz` and not `rz`. So install symlinks for lrz->rz and lsz->sz to support this. This also includes a small fix to also remove sz when cleaning. [Peter: use addprefix rather than patsubst] Signed-off-by: Mike Frysinger Signed-off-by: Peter Korsgaard --- CHANGES | 2 +- package/lrzsz/lrzsz.mk | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 8a560fe0a..05c955413 100644 --- a/CHANGES +++ b/CHANGES @@ -3,7 +3,7 @@ Fixes all over the tree. Updated/fixed packages: bash, bind, busybox, libglib2, - libcurl, libmad, midori, module-init-tools, mtd-utils, + libcurl, libmad, lrzsz, midori, module-init-tools, mtd-utils, openssh, openssl, pciutils, qt, sqlite, sysstat, webkit, zlib Issues resolved (http://bugs.uclibc.org): diff --git a/package/lrzsz/lrzsz.mk b/package/lrzsz/lrzsz.mk index 0b7f4e636..2fce39c78 100644 --- a/package/lrzsz/lrzsz.mk +++ b/package/lrzsz/lrzsz.mk @@ -39,10 +39,12 @@ endef define LRZSZ_INSTALL_TARGET_CMDS cp $(@D)/src/lrz $(TARGET_DIR)/usr/bin/rz cp $(@D)/src/lsz $(TARGET_DIR)/usr/bin/sz + ln -s rz $(TARGET_DIR)/usr/bin/lrz + ln -s sz $(TARGET_DIR)/usr/bin/lsz endef define LRZSZ_CLEAN_CMDS - rm -f $(TARGET_DIR)/usr/bin/rz + rm -f $(addprefix $(TARGET_DIR)/usr/bin/,rz sz lrz lsz) -$(MAKE) -C $(@D) clean endef -- cgit v1.2.3