From c805d47825d6cf9cd4a162c2410015dabc6000b6 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Mon, 26 Apr 2021 15:24:23 +0200 Subject: [PATCH] boost: cleanup build-script --- MPI/boost/build | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/MPI/boost/build b/MPI/boost/build index 2e7c282..320fda8 100755 --- a/MPI/boost/build +++ b/MPI/boost/build @@ -10,7 +10,11 @@ BOOST_BUILD_PATH="${BUILD_DIR}" TOOLSET='' -pbuild::pre_configure() { +pbuild::configure() { + : +} + +pbuild::compile() { case "${COMPILER}" in gcc ) TOOLSET=gcc @@ -19,13 +23,6 @@ pbuild::pre_configure() { std::die 1 "Unsupported compiler!" ;; esac -} - -pbuild::configure() { - : -} - -pbuild::compile() { cd "${SRC_DIR}" ./bootstrap.sh \ --prefix="${PREFIX}" \