diff options
author | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 17:03:20 +0000 |
---|---|---|
committer | Mark Loeser <halcy0n@gentoo.org> | 2009-10-12 17:03:20 +0000 |
commit | a782eba32552a307d27094f44c250675dc24a0b6 (patch) | |
tree | a512334c3425ea31e98ec112b82f369a39571ceb /app-arch/undms | |
parent | ia64/s390/sh/sparc stable wrt #287031 (diff) | |
download | historical-a782eba32552a307d27094f44c250675dc24a0b6.tar.gz historical-a782eba32552a307d27094f44c250675dc24a0b6.tar.bz2 historical-a782eba32552a307d27094f44c250675dc24a0b6.zip |
QA fixes; unquoted variables
Package-Manager: portage-2.2_rc45/cvs/Linux x86_64
Diffstat (limited to 'app-arch/undms')
-rw-r--r-- | app-arch/undms/ChangeLog | 7 | ||||
-rw-r--r-- | app-arch/undms/undms-1.3.ebuild | 10 |
2 files changed, 10 insertions, 7 deletions
diff --git a/app-arch/undms/ChangeLog b/app-arch/undms/ChangeLog index c389a59ce8db..2cae18a379a5 100644 --- a/app-arch/undms/ChangeLog +++ b/app-arch/undms/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-arch/undms -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/undms/ChangeLog,v 1.6 2008/08/23 18:18:41 maekke Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/undms/ChangeLog,v 1.7 2009/10/12 17:02:12 halcy0n Exp $ + + 12 Oct 2009; Mark Loeser <halcy0n@gentoo.org> undms-1.3.ebuild: + QA fixes; unquoted variables 23 Aug 2008; Markus Meier <maekke@gentoo.org> undms-1.3.ebuild: add ~amd64, bug #225993 diff --git a/app-arch/undms/undms-1.3.ebuild b/app-arch/undms/undms-1.3.ebuild index ce5478b29450..98e0357331ee 100644 --- a/app-arch/undms/undms-1.3.ebuild +++ b/app-arch/undms/undms-1.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/undms/undms-1.3.ebuild,v 1.5 2008/08/23 18:18:41 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/undms/undms-1.3.ebuild,v 1.6 2009/10/12 17:02:12 halcy0n Exp $ inherit eutils @@ -15,9 +15,9 @@ IUSE="" DEPEND="app-arch/ncompress" src_unpack() { - mkdir ${S} - uncompress -dc ${DISTDIR}/${P}.c.Z > ${S}/undms.c - cp ${DISTDIR}/${P}.c.Z.readme ${S}/${P}.c.Z.readme + mkdir "${S}" + uncompress -dc "${DISTDIR}"/${P}.c.Z > "${S}"/undms.c + cp "${DISTDIR}"/${P}.c.Z.readme "${S}"/${P}.c.Z.readme } src_compile() { |