diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2010-10-13 16:40:34 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2010-10-13 16:40:34 +0000 |
commit | dbf1d2da4371899108ec6cb8a2c51b4d7e2d0d10 (patch) | |
tree | ddc67e32ad681a62ee496c8ad77427a4cf112733 | |
parent | tidy (diff) | |
download | gentoo-2-dbf1d2da4371899108ec6cb8a2c51b4d7e2d0d10.tar.gz gentoo-2-dbf1d2da4371899108ec6cb8a2c51b4d7e2d0d10.tar.bz2 gentoo-2-dbf1d2da4371899108ec6cb8a2c51b4d7e2d0d10.zip |
Pass the arguments to the src_install to base_src_install.
-rw-r--r-- | eclass/cmake-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index e115e74560ae..9205a79530af 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.59 2010/09/16 16:04:11 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.60 2010/10/13 16:40:34 scarabeus Exp $ # @ECLASS: cmake-utils.eclass # @MAINTAINER: @@ -380,7 +380,7 @@ enable_cmake-utils_src_install() { _check_build_dir pushd "${CMAKE_BUILD_DIR}" > /dev/null - base_src_install + base_src_install "$@" popd > /dev/null # Backward compatibility, for non-array variables |