Merge pull request #9765 from dx9/wip-run-cmake

cmake: add arguments to cmake invocation to support cache configuration

Reviewed-by: Ali Maredia <amaredia@redhat.com>
This commit is contained in:
Ali Maredia 2016-06-17 14:11:24 -04:00 committed by GitHub
commit a5c9775ac9

View File

@ -50,7 +50,7 @@ function run() {
$DRY_RUN ./autogen.sh || return 1
$DRY_RUN mkdir build
$DRY_RUN cd build
$DRY_RUN cmake ../
$DRY_RUN cmake "$@" ../
$DRY_RUN make $BUILD_MAKEOPTS || return 1
}