From 0cb460a2a7c6b208babb47af70ab63f37e17a269 Mon Sep 17 00:00:00 2001 From: Yousong Zhou Date: Wed, 9 May 2018 20:15:08 +0800 Subject: [PATCH] bash: style and doc fix The patch is about job control in general instead of the builtin jobs command Signed-off-by: Yousong Zhou --- utils/bash/Makefile | 2 +- utils/bash/patches/100-fix-jobs.patch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/bash/Makefile b/utils/bash/Makefile index 76f30c977..039e70cef 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 aec758cdd..63a2ffa4b 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