diff options
author | Fabian Groffen <grobian@gentoo.org> | 2017-12-01 10:27:21 +0100 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2017-12-01 10:27:21 +0100 |
commit | a360fbe26e5a2595bea2cf98e294af92dbd1bab1 (patch) | |
tree | 9f4c45b7a17ec83e14b04ae590b16d6495eb5628 /media-sound | |
parent | kde-apps/pimcommon: Re-add accidentally removed patch (diff) | |
download | gentoo-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')
-rw-r--r-- | media-sound/shntool/Manifest | 2 | ||||
-rw-r--r-- | media-sound/shntool/shntool-3.0.10-r1.ebuild | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/media-sound/shntool/Manifest b/media-sound/shntool/Manifest index 312183bd5276..c896779cc051 100644 --- a/media-sound/shntool/Manifest +++ b/media-sound/shntool/Manifest @@ -1 +1 @@ -DIST shntool-3.0.10.tar.gz 216061 SHA256 74302eac477ca08fb2b42b9f154cc870593aec8beab308676e4373a5e4ca2102 SHA512 2150d7123860abb54a56a1615bda991ed3713d73c338723f28b7d01a63c49a47809be16dc57b5b4edeee1567b003f9a4b54945c1cd08440f9503d22b91eaa06d WHIRLPOOL fb7c11c99482e043da2827ab682aadde4b7309d5e0739a176589de2ac8db0af01d62826eb8d8c6451c2c72876078f4147fa8712ce41acff785ac495350d17322 +DIST shntool-3.0.10.tar.gz 216061 BLAKE2B b662c64992409c1a12dd3fffab5f39c69b2c1f8fb958cba590009f599e4363403aa1d353efdec8ab7529fc22cfac0b908368a132b60f7e5acd55dcae932909e2 SHA512 2150d7123860abb54a56a1615bda991ed3713d73c338723f28b7d01a63c49a47809be16dc57b5b4edeee1567b003f9a4b54945c1cd08440f9503d22b91eaa06d 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 +} |