diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 12:23:19 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 12:23:19 +0000 |
commit | 1b2d14d8d3830d11e091af6b0327413d15a1d318 (patch) | |
tree | 52055aa3d0ff160114bc22b4a5a1e07642f01312 /dev-util/acgmake | |
parent | Cleanup (diff) | |
download | gentoo-2-1b2d14d8d3830d11e091af6b0327413d15a1d318.tar.gz gentoo-2-1b2d14d8d3830d11e091af6b0327413d15a1d318.tar.bz2 gentoo-2-1b2d14d8d3830d11e091af6b0327413d15a1d318.zip |
Fix quoting
(Portage version: 2.2_rc44/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/acgmake')
-rw-r--r-- | dev-util/acgmake/acgmake-1.2-r1.ebuild | 10 | ||||
-rw-r--r-- | dev-util/acgmake/acgmake-1.2-r2.ebuild | 14 |
2 files changed, 12 insertions, 12 deletions
diff --git a/dev-util/acgmake/acgmake-1.2-r1.ebuild b/dev-util/acgmake/acgmake-1.2-r1.ebuild index 2d4eb92e94e5..239f4666129b 100644 --- a/dev-util/acgmake/acgmake-1.2-r1.ebuild +++ b/dev-util/acgmake/acgmake-1.2-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/acgmake/acgmake-1.2-r1.ebuild,v 1.3 2007/07/12 01:05:42 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/acgmake/acgmake-1.2-r1.ebuild,v 1.4 2009/10/12 12:23:19 ssuominen Exp $ S=${WORKDIR}/${PN} DESCRIPTION="Build system for large projects" @@ -19,14 +19,14 @@ RDEPEND="${DEPEND}" src_compile() { find . -name 'CVS' -type d -print0 | xargs -0 rm -rf sed -i "s:g++.*:g++:" configs/config.gcc-linux - chmod 644 ${S}/configs/* - chmod 644 ${S}/modules/* + chmod 644 "${S}"/configs/* + chmod 644 "${S}"/modules/* } src_install() { insinto /usr/lib/misc/acgmake doins Config Rules - cp -a bin configs modules ${D}/usr/lib/misc/acgmake + cp -a bin configs modules "${D}"/usr/lib/misc/acgmake dosym ../lib/misc/acgmake/bin/acgmake /usr/bin/acgmake } diff --git a/dev-util/acgmake/acgmake-1.2-r2.ebuild b/dev-util/acgmake/acgmake-1.2-r2.ebuild index 0dbf45a56103..aefceed7c8b7 100644 --- a/dev-util/acgmake/acgmake-1.2-r2.ebuild +++ b/dev-util/acgmake/acgmake-1.2-r2.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/dev-util/acgmake/acgmake-1.2-r2.ebuild,v 1.2 2007/07/12 01:05:42 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/acgmake/acgmake-1.2-r2.ebuild,v 1.3 2009/10/12 12:23:19 ssuominen Exp $ inherit eutils @@ -19,21 +19,21 @@ DEPEND="app-shells/bash src_unpack() { unpack ${A} - cd ${S} + cd "${S}" find . -name 'CVS' -type d -print0 | xargs -0 rm -rf sed -i "s:g++.*:g++:" configs/config.gcc-linux - chmod 644 ${S}/configs/* - chmod 644 ${S}/modules/* + chmod 644 "${S}"/configs/* + chmod 644 "${S}"/modules/* # Allow ebuilds to set CXXFLAGS - epatch ${FILESDIR}/${P}-cflags.patch + epatch "${FILESDIR}"/${P}-cflags.patch } src_install() { insinto /usr/lib/misc/acgmake doins Config Rules - cp -a bin configs modules ${D}/usr/lib/misc/acgmake + cp -a bin configs modules "${D}"/usr/lib/misc/acgmake dosym ../lib/misc/acgmake/bin/acgmake /usr/bin/acgmake } |