'pbuild::build' has been renamed to 'pbuild::compile' in version 0.99.15

This commit is contained in:
2018-07-11 17:37:51 +02:00
parent b2a283ba1c
commit c5e0f8bb79
22 changed files with 22 additions and 22 deletions

View File

@@ -30,7 +30,7 @@ EOF
sed -i.bak "s/MACOSX_DEPLOYMENT_TARGET=.*/MACOSX_DEPLOYMENT_TARGET=$MACOSX_DEPLOYMENT_TARGET/" "${SRC_DIR}/Makefile.system"
}
pbuild::build() {
pbuild::compile() {
make -j3
}

View File

@@ -23,7 +23,7 @@ COMMON_PROF = -pg
EOF
}
pbuild::build() {
pbuild::compile() {
cd "${SRC_DIR}"
make
}

View File

@@ -37,7 +37,7 @@ pbuild::configure() {
}
fi
pbuild::build() {
pbuild::compile() {
if (( V_MAJOR < 5 )); then
cd "${SRC_DIR}"
mkdir -p "${PREFIX}/lib"

View File

@@ -26,7 +26,7 @@ TBB =
EOF
}
pbuild::build() {
pbuild::compile() {
cd "${SRC_DIR}/UMFPACK"
make TARGET=CORE2 BINARY=64 USE_THREAD=0 NO_SHARED=1
}

View File

@@ -13,7 +13,7 @@ pbuild::configure() {
|| exit 1
}
pbuild::build() {
pbuild::compile() {
cd "${SRC_DIR}"
./b2 \
--build-type=minimal \

View File

@@ -58,7 +58,7 @@ pbuild::configure() {
|| exit 1
}
pbuild::build() {
pbuild::compile() {
make -j 4
}