diff options
author | Gregory M. Tuner <gmt@be-evil.net> | 2013-12-06 05:06:25 -0800 |
---|---|---|
committer | Gregory M. Tuner <gmt@be-evil.net> | 2013-12-06 05:06:25 -0800 |
commit | 7ed09b750111c8987ed2d265348189d6a61b6c05 (patch) | |
tree | d81701898bc85d5461becf7b8130177efc329a6d /eclass | |
parent | eclass/cmake-utils.eclass: whitespace (diff) | |
download | gmt-7ed09b750111c8987ed2d265348189d6a61b6c05.tar.gz gmt-7ed09b750111c8987ed2d265348189d6a61b6c05.tar.bz2 gmt-7ed09b750111c8987ed2d265348189d6a61b6c05.zip |
eclass/cmake-utils.eclass: move arguments around a bit
Signed-off-by: Gregory M. Tuner <gmt@be-evil.net>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake-utils.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 08e416a..e6b91eb 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -609,7 +609,6 @@ enable_cmake-utils_src_configure() { # NOTE CMAKE_BUILD_TYPE can be only overriden via CMAKE_BUILD_TYPE eclass variable # No -DCMAKE_BUILD_TYPE=xxx definitions will be in effect. mycmakeargs+=( - "$@" ${warn_unused_cli} -C "${common_config}" -G "$(_generator_to_use)" @@ -618,6 +617,7 @@ enable_cmake-utils_src_configure() { -DCMAKE_INSTALL_DO_STRIP=OFF -DCMAKE_USER_MAKE_RULES_OVERRIDE="${build_rules}" ${MYCMAKEARGS} + "$@" "${CMAKE_USE_DIR}" ) |