diff options
author | 2008-06-26 12:55:37 +0000 | |
---|---|---|
committer | 2008-06-26 12:55:37 +0000 | |
commit | 0b5b0cfde9d2bc261bc99779ee33734e16be98f5 (patch) | |
tree | bfffb83504ade2f682eb7aaaecd862bad186a3c8 /x11-plugins/cputnik | |
parent | remove old (diff) | |
download | gentoo-2-0b5b0cfde9d2bc261bc99779ee33734e16be98f5.tar.gz gentoo-2-0b5b0cfde9d2bc261bc99779ee33734e16be98f5.tar.bz2 gentoo-2-0b5b0cfde9d2bc261bc99779ee33734e16be98f5.zip |
Unnecessary quoting of assigment.
(Portage version: 2.2_rc1/cvs/Linux 2.6.26-rc3 x86_64)
Diffstat (limited to 'x11-plugins/cputnik')
-rw-r--r-- | x11-plugins/cputnik/cputnik-0.2.0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-plugins/cputnik/cputnik-0.2.0.ebuild b/x11-plugins/cputnik/cputnik-0.2.0.ebuild index ef58089ed9c1..3e2bf363d376 100644 --- a/x11-plugins/cputnik/cputnik-0.2.0.ebuild +++ b/x11-plugins/cputnik/cputnik-0.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/cputnik/cputnik-0.2.0.ebuild,v 1.1 2008/04/04 09:26:21 s4t4n Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/cputnik/cputnik-0.2.0.ebuild,v 1.2 2008/06/26 12:55:37 drac Exp $ inherit eutils toolchain-funcs @@ -19,7 +19,7 @@ RDEPEND="x11-libs/libX11 DEPEND="${RDEPEND} x11-proto/xextproto" -S="${WORKDIR}/${P}/src" +S=${WORKDIR}/${P}/src src_unpack() { unpack ${A} @@ -32,6 +32,6 @@ src_compile() { } src_install() { - dobin cputnik + dobin cputnik || die "dobin failed." dodoc ../{AUTHORS,NEWS,README} } |