diff options
author | Fabian Groffen <grobian@gentoo.org> | 2012-06-16 10:48:02 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2012-06-16 10:48:02 +0000 |
commit | b0815a33282679a55128ccaf3a0c54f574a6d7d6 (patch) | |
tree | 5d71f8c91e7d2d8b4feb17a5458dbc1302ffc549 /dev-lang/yasm | |
parent | Version bump. (diff) | |
download | gentoo-2-b0815a33282679a55128ccaf3a0c54f574a6d7d6.tar.gz gentoo-2-b0815a33282679a55128ccaf3a0c54f574a6d7d6.tar.bz2 gentoo-2-b0815a33282679a55128ccaf3a0c54f574a6d7d6.zip |
Fix autoreconf for platforms where /bin/sh doesn't understand $(xxx)
(Portage version: 2.2.01.20430-prefix/cvs/SunOS i386)
Diffstat (limited to 'dev-lang/yasm')
-rw-r--r-- | dev-lang/yasm/ChangeLog | 5 | ||||
-rw-r--r-- | dev-lang/yasm/yasm-1.2.0.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/dev-lang/yasm/ChangeLog b/dev-lang/yasm/ChangeLog index 822491885ef0..f527290aa9bd 100644 --- a/dev-lang/yasm/ChangeLog +++ b/dev-lang/yasm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-lang/yasm # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.54 2012/05/13 16:08:50 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/ChangeLog,v 1.55 2012/06/16 10:48:02 grobian Exp $ + + 16 Jun 2012; Fabian Groffen <grobian@gentoo.org> yasm-1.2.0.ebuild: + Fix autoreconf for platforms where /bin/sh doesn't understand $(xxx) 13 May 2012; Alexis Ballier <aballier@gentoo.org> yasm-1.2.0.ebuild: keyword ~amd64-fbsd diff --git a/dev-lang/yasm/yasm-1.2.0.ebuild b/dev-lang/yasm/yasm-1.2.0.ebuild index 7ef511071b79..acf92af6977d 100644 --- a/dev-lang/yasm/yasm-1.2.0.ebuild +++ b/dev-lang/yasm/yasm-1.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-1.2.0.ebuild,v 1.7 2012/05/13 16:08:50 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/yasm/yasm-1.2.0.ebuild,v 1.8 2012/06/16 10:48:02 grobian Exp $ EAPI=4 PYTHON_DEPEND="python? 2:2.7" @@ -30,6 +30,8 @@ pkg_setup() { src_prepare() { epatch "${FILESDIR}/${P}-fix_cython_check.patch" + # ksh doesn't grok $(xxx), makes aclocal fail + sed -i -e '1c\#!/usr/bin/env sh' YASM-VERSION-GEN.sh || die eautoreconf } |