diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-04 03:39:44 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-04 03:39:44 +0000 |
commit | a48cc355320341ef4a978d1e9c2f2264feccfb61 (patch) | |
tree | 2dfd67795923bdd58f1e9eabfec1ae6d12217909 /x11-themes | |
parent | Starting and hopefully ending with 5.8.7 we observe stack corruption with the... (diff) | |
download | gentoo-2-a48cc355320341ef4a978d1e9c2f2264feccfb61.tar.gz gentoo-2-a48cc355320341ef4a978d1e9c2f2264feccfb61.tar.bz2 gentoo-2-a48cc355320341ef4a978d1e9c2f2264feccfb61.zip |
make sure we quote $D
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.8.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.8.ebuild b/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.8.ebuild index 441200fe6870..30b0fab18f38 100644 --- a/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.8.ebuild +++ b/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.8.ebuild,v 1.1 2005/07/06 18:25:35 leonardop Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/hicolor-icon-theme/hicolor-icon-theme-0.8.ebuild,v 1.2 2005/08/04 03:39:44 vapier Exp $ DESCRIPTION="Fallback theme for the freedesktop icon theme specification" HOMEPAGE="http://icon-theme.freedesktop.org/wiki/HicolorTheme" @@ -8,13 +8,13 @@ SRC_URI="http://icon-theme.freedesktop.org/releases/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~x86 ~ppc ~sparc ~mips ~alpha ~arm ~hppa ~amd64 ~ia64 ~ppc64" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" IUSE="" DEPEND="" src_install() { - make DESTDIR=${D} install || die + make DESTDIR="${D}" install || die dodoc ChangeLog README } |