From: Yousong Zhou Date: Wed, 9 May 2018 12:15:08 +0000 (+0800) Subject: bash: style and doc fix X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=0cb460a2a7c6b208babb47af70ab63f37e17a269;p=feed%2Fpackages.git bash: style and doc fix The patch is about job control in general instead of the builtin jobs command Signed-off-by: Yousong Zhou --- diff --git a/utils/bash/Makefile b/utils/bash/Makefile index 76f30c9774..039e70cef4 100644 --- a/utils/bash/Makefile +++ b/utils/bash/Makefile @@ -84,7 +84,7 @@ endef define Package/bash/install $(INSTALL_DIR) $(1)/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/bin/bash $(1)/bin/ - ln -sf bash $(1)/bin/rbash + $(LN) bash $(1)/bin/rbash endef diff --git a/utils/bash/patches/100-fix-jobs.patch b/utils/bash/patches/100-fix-jobs.patch index aec758cdd5..63a2ffa4b1 100644 --- a/utils/bash/patches/100-fix-jobs.patch +++ b/utils/bash/patches/100-fix-jobs.patch @@ -1,4 +1,4 @@ -Fix builint command jobs +Fix job control Patch was taken from https://git.alpinelinux.org/cgit/aports/tree/main/bash/fix-jobs.patch