refactor variable names according to changes in Pmodules/0.99.15 in build-scripts of group 'Compiler'

This commit is contained in:
2018-07-11 10:49:03 +02:00
parent f62924c8f3
commit b53aaf92a5
17 changed files with 39 additions and 39 deletions

View File

@@ -2,11 +2,11 @@
SOURCE_URL="https://netcologne.dl.sourceforge.net/project/boost/boost/$V/boost_${V_MAJOR}_${V_MINOR}_${V_PATCHLVL}.tar.gz"
BOOST_BUILD_PATH="${MODULE_BUILDDIR}"
BOOST_BUILD_PATH="${BUILD_DIR}"
pbuild::configure() {
cd "${MODULE_SRCDIR}"
"${MODULE_SRCDIR}"/bootstrap.sh \
cd "${SRC_DIR}"
"${SRC_DIR}"/bootstrap.sh \
--prefix="${PREFIX}" \
--with-libraries=all \
--with-python-root="${PYTHON_PREFIX}" \
@@ -14,10 +14,10 @@ pbuild::configure() {
}
pbuild::build() {
cd "${MODULE_SRCDIR}"
cd "${SRC_DIR}"
./b2 \
--build-type=minimal \
--build-dir="${MODULE_BUILDDIR}" \
--build-dir="${BUILD_DIR}" \
--layout=system \
--without-mpi \
variant=release \
@@ -27,10 +27,10 @@ pbuild::build() {
}
pbuild::install() {
cd "${MODULE_SRCDIR}"
cd "${SRC_DIR}"
./b2 \
--build-type=minimal \
--build-dir="${MODULE_BUILDDIR}" \
--build-dir="${BUILD_DIR}" \
--layout=system \
--without-mpi \
variant=release \