diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-13 16:10:21 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-06-13 16:10:21 +0000 |
commit | 2b434dca9790aff17913f9f7d4ca30b92ea390ec (patch) | |
tree | e418feef666d48179ef6bc54df84b982e2dae36b /eclass/xfconf.eclass | |
parent | x86 stable wrt bug #321893 (diff) | |
download | gentoo-2-2b434dca9790aff17913f9f7d4ca30b92ea390ec.tar.gz gentoo-2-2b434dca9790aff17913f9f7d4ca30b92ea390ec.tar.bz2 gentoo-2-2b434dca9790aff17913f9f7d4ca30b92ea390ec.zip |
Accept arguments to emake install
Diffstat (limited to 'eclass/xfconf.eclass')
-rw-r--r-- | eclass/xfconf.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/xfconf.eclass b/eclass/xfconf.eclass index a54729de61b2..dcceb0ee4880 100644 --- a/eclass/xfconf.eclass +++ b/eclass/xfconf.eclass @@ -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/eclass/xfconf.eclass,v 1.15 2010/03/30 12:10:46 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfconf.eclass,v 1.16 2010/06/13 16:10:21 ssuominen Exp $ # @ECLASS: xfconf.eclass # @MAINTAINER: @@ -133,7 +133,7 @@ xfconf_src_compile() { # Run emake install and install documentation in DOCS variable xfconf_src_install() { debug-print-function ${FUNCNAME} "$@" - emake DESTDIR="${D}" install || die "emake install failed" + emake DESTDIR="${D}" "$@" install || die "emake install failed" if [[ -n ${DOCS} ]]; then dodoc ${DOCS} || die "dodoc failed" |