commit: 23749c7cadeb2e9b189fd70f3edb69459d548738 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Dec 19 21:15:20 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Dec 19 21:16:18 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23749c7c
net-libs/gnome-online-accounts: use Bash for configure for now Fix compile using e.g. dash as /bin/sh (instead of bash as /bin/sh). Patch submitted upstream. Closes: https://bugs.gentoo.org/829494 Signed-off-by: Sam James <sam <AT> gentoo.org> net-libs/gnome-online-accounts/gnome-online-accounts-3.40.0.ebuild | 5 ++++- net-libs/gnome-online-accounts/gnome-online-accounts-3.40.1.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.0.ebuild b/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.0.ebuild index 90a80a4489ec..ed7cb68c8a1c 100644 --- a/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.0.ebuild +++ b/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.0.ebuild @@ -59,7 +59,10 @@ src_prepare() { src_configure() { # TODO: Give users a way to set the G/FB/Windows Live secrets - gnome2_src_configure \ + + # CONFIG_SHELL for bashisms in bug #829494, patch submitted upstream. + # Can be removed in future. + CONFIG_SHELL="${BROOT}/bin/bash" gnome2_src_configure \ --disable-static \ --enable-backend \ --enable-documentation \ diff --git a/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.1.ebuild b/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.1.ebuild index f012afee23f2..fe36f7b72807 100644 --- a/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.1.ebuild +++ b/net-libs/gnome-online-accounts/gnome-online-accounts-3.40.1.ebuild @@ -59,7 +59,10 @@ src_prepare() { src_configure() { # TODO: Give users a way to set the G/FB/Windows Live secrets - gnome2_src_configure \ + + # CONFIG_SHELL for bashisms in bug #829494, patch submitted upstream. + # Can be removed in future. + CONFIG_SHELL="${BROOT}/bin/bash" gnome2_src_configure \ --disable-static \ --enable-backend \ --enable-documentation \
