diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2007-12-06 16:52:01 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2007-12-06 16:52:01 +0000 |
commit | 8cea3f9315bc89c4d477ece30d8cdb701ce3a00c (patch) | |
tree | b70d2141fcef29e9b82c22b705c6d15c785cac03 /sys-fs/owfs | |
parent | alpha/ia64/sparc/x86 stable (diff) | |
download | gentoo-2-8cea3f9315bc89c4d477ece30d8cdb701ce3a00c.tar.gz gentoo-2-8cea3f9315bc89c4d477ece30d8cdb701ce3a00c.tar.bz2 gentoo-2-8cea3f9315bc89c4d477ece30d8cdb701ce3a00c.zip |
fix/change variable quoting
(Portage version: 2.1.4_rc7)
Diffstat (limited to 'sys-fs/owfs')
-rw-r--r-- | sys-fs/owfs/owfs-2.7_p0.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-fs/owfs/owfs-2.7_p0.ebuild b/sys-fs/owfs/owfs-2.7_p0.ebuild index 012d45c843ae..345f00ae6eae 100644 --- a/sys-fs/owfs/owfs-2.7_p0.ebuild +++ b/sys-fs/owfs/owfs-2.7_p0.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/owfs-2.7_p0.ebuild,v 1.1 2007/12/06 15:00:50 wschlich Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/owfs/owfs-2.7_p0.ebuild,v 1.2 2007/12/06 16:52:01 wschlich Exp $ inherit eutils -MY_P="${P/_/}" +MY_P=${P/_/} DESCRIPTION="Access 1-Wire devices like a filesystem" SRC_URI="mirror://sourceforge/owfs/${MY_P}.tar.gz" @@ -48,6 +48,6 @@ src_compile() { } src_install() { - emake DESTDIR=${D} install || die "emake install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc README NEWS ChangeLog AUTHORS } |