diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-04-04 18:42:06 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-04-04 18:42:06 +0000 |
commit | b2298b33ba9644a2c4bbc073c9f0ccbb4a6d6f16 (patch) | |
tree | d8b9fe6f6418081b41fbcddbcddac29aea007a6b | |
parent | Stable for amd64, wrt bug #409403 (diff) | |
download | gentoo-2-b2298b33ba9644a2c4bbc073c9f0ccbb4a6d6f16.tar.gz gentoo-2-b2298b33ba9644a2c4bbc073c9f0ccbb4a6d6f16.tar.bz2 gentoo-2-b2298b33ba9644a2c4bbc073c9f0ccbb4a6d6f16.zip |
Fix quoting issues.
(Portage version: 2.2.0_alpha99/cvs/Linux x86_64)
-rw-r--r-- | www-servers/apache/ChangeLog | 5 | ||||
-rw-r--r-- | www-servers/apache/apache-2.4.1-r2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/www-servers/apache/ChangeLog b/www-servers/apache/ChangeLog index c4f17807cb40..a76083cb03b1 100644 --- a/www-servers/apache/ChangeLog +++ b/www-servers/apache/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-servers/apache # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.184 2012/04/04 18:38:39 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/ChangeLog,v 1.185 2012/04/04 18:42:06 jer Exp $ + + 04 Apr 2012; Jeroen Roovers <jer@gentoo.org> apache-2.4.1-r2.ebuild: + Fix quoting issues. 04 Apr 2012; Jeroen Roovers <jer@gentoo.org> apache-2.2.22.ebuild: Stable for HPPA (bug #401761). diff --git a/www-servers/apache/apache-2.4.1-r2.ebuild b/www-servers/apache/apache-2.4.1-r2.ebuild index 1a9b51225c11..7ce301fa9b4f 100644 --- a/www-servers/apache/apache-2.4.1-r2.ebuild +++ b/www-servers/apache/apache-2.4.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.1-r2.ebuild,v 1.1 2012/04/01 16:04:10 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-servers/apache/apache-2.4.1-r2.ebuild,v 1.2 2012/04/04 18:42:06 jer Exp $ EAPI="2" @@ -124,6 +124,6 @@ src_install() { done # well, actually installing things makes them more installed, I guess? - cp ${S}/support/apxs ${D}/usr/sbin/apxs || die "Failed to install apxs" - chmod 0755 ${D}/usr/sbin/apxs + cp "${S}"/support/apxs "${D}"/usr/sbin/apxs || die "Failed to install apxs" + chmod 0755 "${D}"/usr/sbin/apxs } |