cmake: Remove redundant call to get_processors

Signed-off-by: Brad Hubbard <bhubbard@redhat.com>
This commit is contained in:
Brad Hubbard 2016-05-06 11:09:42 +10:00
parent f2e9a74bce
commit e7561db477

View File

@ -51,7 +51,7 @@ function run() {
$DRY_RUN mkdir build
$DRY_RUN cd build
$DRY_RUN cmake ../
$DRY_RUN make $BUILD_MAKEOPTS -j$(get_processors) || return 1
$DRY_RUN make $BUILD_MAKEOPTS || return 1
}
function main() {