diff options
author | Thomas Anderson <gentoofan23@gentoo.org> | 2009-08-04 20:55:02 +0000 |
---|---|---|
committer | Thomas Anderson <gentoofan23@gentoo.org> | 2009-08-04 20:55:02 +0000 |
commit | e712d2642341003dcde1ccd1a2b2853ebc355a33 (patch) | |
tree | e80af7ada0d0f3bcc34b863bb8ba1d3b2d216752 /eclass | |
parent | Version bump (bug #279915). (diff) | |
download | gentoo-2-e712d2642341003dcde1ccd1a2b2853ebc355a33.tar.gz gentoo-2-e712d2642341003dcde1ccd1a2b2853ebc355a33.tar.bz2 gentoo-2-e712d2642341003dcde1ccd1a2b2853ebc355a33.zip |
Fix S definition for PN=mythtv, conditionalize the S redifinition based on whether we're in a 'mythtv' ebuild.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mythtv.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mythtv.eclass b/eclass/mythtv.eclass index 86f7d2088280..8fc7e1e24509 100644 --- a/eclass/mythtv.eclass +++ b/eclass/mythtv.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.15 2009/07/19 04:12:59 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv.eclass,v 1.16 2009/08/04 20:55:02 gentoofan23 Exp $ # # @ECLASS: mythtv.eclass # @AUTHOR: Doug Goldstein <cardoe@gentoo.org> @@ -41,4 +41,4 @@ esac HOMEPAGE="http://www.mythtv.org" LICENSE="GPL-2" SRC_URI="http://svn.mythtv.org/trac/changeset/${MYTHTV_REV}/${MYTHTV_REPO}?old_path=%2F&format=zip -> ${MY_PN}-${PV}.zip" -S="${WORKDIR}/${MYTHTV_REPO}" +[[ ${PN} == mythtv ]] || S="${WORKDIR}/${MYTHTV_REPO}" |