diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 15:18:37 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-07-21 15:18:37 +0000 |
commit | 30bfc90d68ef5c072bb912e0177a0021e4243065 (patch) | |
tree | d8cb32033dcfd37c748a1c96036dd269da00592d /x11-misc | |
parent | fix quoting (diff) | |
download | gentoo-2-30bfc90d68ef5c072bb912e0177a0021e4243065.tar.gz gentoo-2-30bfc90d68ef5c072bb912e0177a0021e4243065.tar.bz2 gentoo-2-30bfc90d68ef5c072bb912e0177a0021e4243065.zip |
fix quoting
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/videogen/videogen-0.32.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/x11-misc/videogen/videogen-0.32.ebuild b/x11-misc/videogen/videogen-0.32.ebuild index c93d158df978..3c711a6044ea 100644 --- a/x11-misc/videogen/videogen-0.32.ebuild +++ b/x11-misc/videogen/videogen-0.32.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/videogen/videogen-0.32.ebuild,v 1.12 2007/10/17 06:48:14 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/videogen/videogen-0.32.ebuild,v 1.13 2010/07/21 15:18:37 ssuominen Exp $ inherit toolchain-funcs @@ -15,12 +15,12 @@ DEPEND=">=sys-apps/sed-4" src_unpack() { unpack ${A} - sed -i 's:CFLAGS = :# CFLAGS = :' ${S}/Makefile - sed -i "s:CC = gcc:CC = $(tc-getCC):" ${S}/Makefile + sed -i 's:CFLAGS = :# CFLAGS = :' "${S}"/Makefile + sed -i "s:CC = gcc:CC = $(tc-getCC):" "${S}"/Makefile } src_install() { - dobin videogen + dobin videogen || die doman videogen.1x dodoc BUGS CHANGES README THANKS videogen.sample } |