summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2017-12-01 10:27:21 +0100
committerFabian Groffen <grobian@gentoo.org>2017-12-01 10:27:21 +0100
commita360fbe26e5a2595bea2cf98e294af92dbd1bab1 (patch)
tree9f4c45b7a17ec83e14b04ae590b16d6495eb5628 /media-sound/shntool/shntool-3.0.10-r1.ebuild
parentkde-apps/pimcommon: Re-add accidentally removed patch (diff)
downloadgentoo-a360fbe26e5a2595bea2cf98e294af92dbd1bab1.tar.gz
gentoo-a360fbe26e5a2595bea2cf98e294af92dbd1bab1.tar.bz2
gentoo-a360fbe26e5a2595bea2cf98e294af92dbd1bab1.zip
media-sound/shntool: fix building when CONFIG_SHELL != bash, bug #527310
Closes: https://bugs.gentoo.org/527310 Package-Manager: Portage-2.3.13, Repoman-2.3.3
Diffstat (limited to 'media-sound/shntool/shntool-3.0.10-r1.ebuild')
-rw-r--r--media-sound/shntool/shntool-3.0.10-r1.ebuild7
1 files changed, 6 insertions, 1 deletions
diff --git a/media-sound/shntool/shntool-3.0.10-r1.ebuild b/media-sound/shntool/shntool-3.0.10-r1.ebuild
index 16c9434f3ea4..5e2ea531d5e9 100644
--- a/media-sound/shntool/shntool-3.0.10-r1.ebuild
+++ b/media-sound/shntool/shntool-3.0.10-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
@@ -21,3 +21,8 @@ RDEPEND="flac? ( media-libs/flac )
DEPEND="${RDEPEND}"
DOCS="NEWS README ChangeLog AUTHORS doc/*"
+
+src_configure() {
+ unset CONFIG_SHELL # default to bash, bug #527310
+ default
+}