diff options
author | Hans de Graaff <graaff@gentoo.org> | 2009-08-22 21:10:29 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2009-08-22 21:10:29 +0000 |
commit | 3ec2ee8cf1e6971c1fc691459e2b15a6bdf2cceb (patch) | |
tree | ea3e4a5d53f3179e0dd07d44705f1fcd4208f72f /dev-ruby/fxruby | |
parent | fixed rdepend for bug 231870. (diff) | |
download | gentoo-2-3ec2ee8cf1e6971c1fc691459e2b15a6bdf2cceb.tar.gz gentoo-2-3ec2ee8cf1e6971c1fc691459e2b15a6bdf2cceb.tar.bz2 gentoo-2-3ec2ee8cf1e6971c1fc691459e2b15a6bdf2cceb.zip |
QA: fix quotation.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/fxruby')
-rw-r--r-- | dev-ruby/fxruby/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ruby/fxruby/fxruby-1.6.19.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-ruby/fxruby/ChangeLog b/dev-ruby/fxruby/ChangeLog index 540a179bebf6..7e10cc86f0d2 100644 --- a/dev-ruby/fxruby/ChangeLog +++ b/dev-ruby/fxruby/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/fxruby # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/ChangeLog,v 1.80 2009/04/01 04:58:49 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/ChangeLog,v 1.81 2009/08/22 21:10:29 graaff Exp $ + + 22 Aug 2009; Hans de Graaff <graaff@gentoo.org> fxruby-1.6.19.ebuild: + QA: fix quotation. 01 Apr 2009; Jeroen Roovers <jer@gentoo.org> fxruby-1.6.18-r1.ebuild: Stable for HPPA (bug #263282). Fix one quoting issue. diff --git a/dev-ruby/fxruby/fxruby-1.6.19.ebuild b/dev-ruby/fxruby/fxruby-1.6.19.ebuild index e16ecc788fe0..718af39aac44 100644 --- a/dev-ruby/fxruby/fxruby-1.6.19.ebuild +++ b/dev-ruby/fxruby/fxruby-1.6.19.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild,v 1.1 2009/03/21 18:56:10 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/fxruby/fxruby-1.6.19.ebuild,v 1.2 2009/08/22 21:10:29 graaff Exp $ EAPI="1" @@ -50,7 +50,7 @@ src_install() { insinto ${rdbase} [ -n "${rdfiles}" ] && doins ${rdfiles} - rmdir ${D}${rdbase} 2>/dev/null || true + rmdir "${D}"${rdbase} 2>/dev/null || true if [ -d doc -o -d docs ] ; then dohtml -x html -r {doc,docs}/* dohtml -r {doc,docs}/html/* @@ -67,7 +67,7 @@ src_install() { for dir in sample samples example examples; do if [ -d ${dir} ] ; then dodir /usr/share/doc/${PF} - cp -pPR ${dir} ${D}/usr/share/doc/${PF} || die "cp failed" + cp -pPR ${dir} "${D}"/usr/share/doc/${PF} || die "cp failed" fi done fi |