diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2009-10-11 23:13:32 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2009-10-11 23:13:32 +0000 |
commit | c2975dd058344f8d13f794906ac6da612eaed685 (patch) | |
tree | 7f65f6411c11624b352f5f03c111f2ae787d9247 /app-admin | |
parent | x11-proto/xf86miscproto: bump to 0.9.3, sync with overlay (diff) | |
download | gentoo-2-c2975dd058344f8d13f794906ac6da612eaed685.tar.gz gentoo-2-c2975dd058344f8d13f794906ac6da612eaed685.tar.bz2 gentoo-2-c2975dd058344f8d13f794906ac6da612eaed685.zip |
QA fixes, unquoted variables
(Portage version: 2.2_rc45/cvs/Linux x86_64)
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/consolehm/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/consolehm/consolehm-1.31.ebuild | 12 |
2 files changed, 11 insertions, 8 deletions
diff --git a/app-admin/consolehm/ChangeLog b/app-admin/consolehm/ChangeLog index 6da8ffc93a88..0e7729423d8a 100644 --- a/app-admin/consolehm/ChangeLog +++ b/app-admin/consolehm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-admin/consolehm -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/consolehm/ChangeLog,v 1.1 2007/01/12 15:23:09 the_paya Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/consolehm/ChangeLog,v 1.2 2009/10/11 23:13:32 halcy0n Exp $ + + 11 Oct 2009; Mark Loeser <halcy0n@gentoo.org> consolehm-1.31.ebuild: + QA fixes, unquoted variables *consolehm-1.31 (12 Jan 2007) diff --git a/app-admin/consolehm/consolehm-1.31.ebuild b/app-admin/consolehm/consolehm-1.31.ebuild index 35b2ed309f5c..0ce006c95b5f 100644 --- a/app-admin/consolehm/consolehm-1.31.ebuild +++ b/app-admin/consolehm/consolehm-1.31.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/consolehm/consolehm-1.31.ebuild,v 1.1 2007/01/12 15:23:09 the_paya Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/consolehm/consolehm-1.31.ebuild,v 1.2 2009/10/11 23:13:32 halcy0n Exp $ inherit eutils @@ -21,7 +21,7 @@ S="${WORKDIR}/${PN}" src_unpack() { unpack ${A} - epatch ${FILESDIR}/${PN}-gcc4.patch || die "patch failed" + epatch "${FILESDIR}"/${PN}-gcc4.patch || die "patch failed" export CHMS="${S}/consolehm" # The only 'SMBus' smb.h i've found is in a different place: cd "${S}/consolehm" @@ -40,7 +40,7 @@ src_compile() { src_install() { dobin "${S}/consolehm/chm" doman "${S}/consolehm/chm.8" - dodoc ${S}/CHANGELOG - dodoc ${S}/README - dodoc ${S}/TODO + dodoc "${S}"/CHANGELOG + dodoc "${S}"/README + dodoc "${S}"/TODO } |