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 | 929c591310b326f62526b948f9043de99598a1df (patch) | |
tree | 885ad4af0e956ba2297a37bb1dfb6725f4fb6af3 /eclass/xfconf.eclass | |
parent | x86 stable wrt bug #321893 (diff) | |
download | historical-929c591310b326f62526b948f9043de99598a1df.tar.gz historical-929c591310b326f62526b948f9043de99598a1df.tar.bz2 historical-929c591310b326f62526b948f9043de99598a1df.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" |