diff options
author | Ulrich Müller <ulm@gentoo.org> | 2017-01-31 07:08:43 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2017-01-31 07:08:43 +0100 |
commit | 8f6cd74f9832b76a0964a00821113364805fc717 (patch) | |
tree | 0b5093983d1ebac679903f641157e290ead80226 /app-editors/emacs-vcs | |
parent | net-analyzer/tcpdump: Stable for HPPA PPC64 (bug #606516). (diff) | |
download | gentoo-8f6cd74f9832b76a0964a00821113364805fc717.tar.gz gentoo-8f6cd74f9832b76a0964a00821113364805fc717.tar.bz2 gentoo-8f6cd74f9832b76a0964a00821113364805fc717.zip |
app-editors/emacs-vcs: Use bash -c rather than subshell.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'app-editors/emacs-vcs')
-rw-r--r-- | app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild b/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild index cc111aa172c7..1dc6fab1f244 100644 --- a/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild +++ b/app-editors/emacs-vcs/emacs-vcs-26.0.9999.ebuild @@ -116,7 +116,7 @@ src_prepare() { [[ ${FULL_VERSION} =~ ^${PV%.*}(\..*)?$ ]] \ || die "Upstream version number changed to ${FULL_VERSION}" - ( autoreconf() { :; }; . autogen.sh --no-check ) || die #605400 + bash -c "autoreconf() { :; }; . autogen.sh --no-check" || die #605400 fi eapply_user |