From: Danomi Manchego Date: Tue, 14 Jul 2020 02:24:59 +0000 (-0400) Subject: Makefile: add /etc/bash_completion.d to non-bash purge X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=18072ecc24b8f288cf131e0d3dcceb0bb6c955c8;p=buildroot.git Makefile: add /etc/bash_completion.d to non-bash purge Currently, we delete /usr/share/bash-completion when bash is not enabled. We need to delete /etc/bash_completion.d too. For example, the jo package installs files there: /etc/bash_completion.d/jo.bash Signed-off-by: Danomi Manchego Signed-off-by: Thomas Petazzoni --- diff --git a/Makefile b/Makefile index 8355de5ffa..7bd8ada488 100644 --- a/Makefile +++ b/Makefile @@ -756,6 +756,7 @@ ifneq ($(BR2_PACKAGE_GDB),y) endif ifneq ($(BR2_PACKAGE_BASH),y) rm -rf $(TARGET_DIR)/usr/share/bash-completion + rm -rf $(TARGET_DIR)/etc/bash_completion.d endif ifneq ($(BR2_PACKAGE_ZSH),y) rm -rf $(TARGET_DIR)/usr/share/zsh