diff options
author | 2011-10-21 16:55:50 +0000 | |
---|---|---|
committer | 2011-10-21 16:55:50 +0000 | |
commit | 7e31a646144807bb3a3b6b8668982f7c237806cc (patch) | |
tree | f6c3e2ee039e8ce2228203effcca05841a7a5f9b /sys-apps/seabios | |
parent | Update blockers so we mark the versions of qemu-kvm we'll work with. (diff) | |
download | gentoo-2-7e31a646144807bb3a3b6b8668982f7c237806cc.tar.gz gentoo-2-7e31a646144807bb3a3b6b8668982f7c237806cc.tar.bz2 gentoo-2-7e31a646144807bb3a3b6b8668982f7c237806cc.zip |
Quote unquoted variable
(Portage version: 2.1.10.30/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/seabios')
-rw-r--r-- | sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild b/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild index 259dec16947e..765d63f294de 100644 --- a/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild +++ b/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild,v 1.4 2011/10/21 16:55:20 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/seabios/seabios-0.6.3_pre20010817.ebuild,v 1.5 2011/10/21 16:55:50 cardoe Exp $ EAPI=4 @@ -39,10 +39,10 @@ RDEPEND="${DEPEND} src_prepare() { if [[ -z "${EGIT_COMMIT}" ]]; then sed -e "s/VERSION=.*/VERSION=${PV}/" \ - -i ${S}/Makefile + -i "${S}/Makefile" else sed -e "s/VERSION=.*/VERSION=${PV}_pre${EGIT_COMMIT}/" \ - -i ${S}/Makefile + -i "${S}/Makefile" fi } |