diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-10-10 13:47:37 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-10-10 13:47:37 +0000 |
commit | fc46e98e67f2665a9e93b5511a9d4e71021d3f19 (patch) | |
tree | 0f71bf4c2db8022c912a245276b79be8d004d3b5 /x11-themes/iceicons | |
parent | Fix some QA issues (diff) | |
download | gentoo-2-fc46e98e67f2665a9e93b5511a9d4e71021d3f19.tar.gz gentoo-2-fc46e98e67f2665a9e93b5511a9d4e71021d3f19.tar.bz2 gentoo-2-fc46e98e67f2665a9e93b5511a9d4e71021d3f19.zip |
Fix unescaped usage of 'ICEICONSDIR' variable
(Portage version: 2.2.0_alpha134/cvs/Linux x86_64)
Diffstat (limited to 'x11-themes/iceicons')
-rw-r--r-- | x11-themes/iceicons/ChangeLog | 5 | ||||
-rw-r--r-- | x11-themes/iceicons/iceicons-0.10.0.ebuild | 10 |
2 files changed, 9 insertions, 6 deletions
diff --git a/x11-themes/iceicons/ChangeLog b/x11-themes/iceicons/ChangeLog index a86f81d7d045..7705613b50ca 100644 --- a/x11-themes/iceicons/ChangeLog +++ b/x11-themes/iceicons/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-themes/iceicons # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/iceicons/ChangeLog,v 1.12 2012/10/10 13:38:03 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/iceicons/ChangeLog,v 1.13 2012/10/10 13:47:37 pinkbyte Exp $ + + 10 Oct 2012; Sergey Popov <pinkbyte@gentoo.org> iceicons-0.10.0.ebuild: + Fix unescaped usage of 'ICEICONSDIR' variable 10 Oct 2012; Sergey Popov <pinkbyte@gentoo.org> iceicons-0.10.0.ebuild: Fix some QA issues diff --git a/x11-themes/iceicons/iceicons-0.10.0.ebuild b/x11-themes/iceicons/iceicons-0.10.0.ebuild index ec87c4b797f4..7aca27ae9254 100644 --- a/x11-themes/iceicons/iceicons-0.10.0.ebuild +++ b/x11-themes/iceicons/iceicons-0.10.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/x11-themes/iceicons/iceicons-0.10.0.ebuild,v 1.12 2012/10/10 13:38:03 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/iceicons/iceicons-0.10.0.ebuild,v 1.13 2012/10/10 13:47:37 pinkbyte Exp $ DESCRIPTION="IceWM Icons is a set of XPM 16x16, 32x32, and 48x48 XPM and PNG icons for IceWM" HOMEPAGE="http://sandbox.cz/~covex/icewm/iceicons/" @@ -18,10 +18,10 @@ S="${WORKDIR}" ICEICONSDIR="/usr/share/icewm/icons/iceicons" src_install() { - dodir ${ICEICONSDIR} - cp -pPR icons/* "${D}"/${ICEICONSDIR} || die - chown -R root:0 "${D}"/${ICEICONSDIR} || die - chmod -R o-w "${D}"/${ICEICONSDIR} || die + dodir "${ICEICONSDIR}" + cp -pPR icons/* "${D}"/"${ICEICONSDIR}" || die + chown -R root:0 "${D}"/"${ICEICONSDIR}" || die + chmod -R o-w "${D}"/"${ICEICONSDIR}" || die dodoc CHANGELOG README TODO winoptions } |