diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2009-02-22 12:36:32 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2009-02-22 12:36:32 +0000 |
commit | fb8a8e2fae5793cac5fd93f57b4c1b6fa973dbc9 (patch) | |
tree | 5a6541b435649ded1e0b5bdfb77672ac290e2f78 /dev-python/html5lib/html5lib-0.11.1.ebuild | |
parent | Quote instead of escape to work-around bug in bash-4.0 (diff) | |
download | historical-fb8a8e2fae5793cac5fd93f57b4c1b6fa973dbc9.tar.gz historical-fb8a8e2fae5793cac5fd93f57b4c1b6fa973dbc9.tar.bz2 historical-fb8a8e2fae5793cac5fd93f57b4c1b6fa973dbc9.zip |
Quote instead of escape inside $() to work-around bug in bash-4.0
Package-Manager: portage-2.2_rc23/cvs/Linux x86_64
Diffstat (limited to 'dev-python/html5lib/html5lib-0.11.1.ebuild')
-rw-r--r-- | dev-python/html5lib/html5lib-0.11.1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-python/html5lib/html5lib-0.11.1.ebuild b/dev-python/html5lib/html5lib-0.11.1.ebuild index d2ba79ad6208..e3be21cd93a7 100644 --- a/dev-python/html5lib/html5lib-0.11.1.ebuild +++ b/dev-python/html5lib/html5lib-0.11.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/html5lib/html5lib-0.11.1.ebuild,v 1.2 2009/02/03 21:48:16 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/html5lib/html5lib-0.11.1.ebuild,v 1.3 2009/02/22 12:34:35 loki_val Exp $ EAPI="2" @@ -27,7 +27,7 @@ src_install() { distutils_src_install if use examples ; then - $(find examples -name '*.pyc' -exec rm -rf {} \;) + $(find examples -name '*.pyc' -exec rm -rf {} ';') insinto "/usr/share/doc/${PF}" doins -r examples || die "Failed to install examples" fi |