From ed926851f11efb588ece1907799e73dc81090617 Mon Sep 17 00:00:00 2001 From: OscarL Date: Mon, 17 Oct 2022 04:25:00 -0300 Subject: [PATCH] bash_completion: fix location of bash_completion.sh (#7296) Make sure bash_completion.sh is placed under settings/etc/profile.d/ and not "settings/profile.d". Otherwise bash would not source it properly. --- app-shells/bash_completion/bash_completion-2.11.recipe | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/app-shells/bash_completion/bash_completion-2.11.recipe b/app-shells/bash_completion/bash_completion-2.11.recipe index 2866227db..0aa302eee 100644 --- a/app-shells/bash_completion/bash_completion-2.11.recipe +++ b/app-shells/bash_completion/bash_completion-2.11.recipe @@ -13,7 +13,7 @@ a daily basis." HOMEPAGE="https://github.com/scop/bash-completion" COPYRIGHT="2006-2020 Debian Project" LICENSE="GNU GPL v2" -REVISION="1" +REVISION="2" SOURCE_URI="https://github.com/scop/bash-completion/releases/download/$portVersion/bash-completion-$portVersion.tar.xz" CHECKSUM_SHA256="73a8894bad94dee83ab468fa09f628daffd567e8bef1a24277f1e9a0daf911ac" SOURCE_DIR="bash-completion-$portVersion" @@ -41,16 +41,17 @@ BUILD_PREREQUIRES=" " GLOBAL_WRITABLE_FILES=" - settings/profile.d/bash_completion.sh auto-merge + settings/etc/profile.d/bash_completion.sh auto-merge " USER_SETTINGS_FILES=" - settings/profile.d/bash_completion.sh + settings/etc/profile.d/bash_completion.sh " BUILD() { autoreconf -i - runConfigure ./configure + runConfigure --omit-dirs sysconfdir \ + ./configure --sysconfdir=$settingsDir/etc make $jobArgs }