diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-08-12 19:33:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-08-12 19:33:41 +0300 |
commit | 6089e18fa023f07904fc169a578822cf265f78c2 (patch) | |
tree | 2cdcee9c9846554e8456301bb3219e02398014b6 /scripts/include | |
parent | 82daa201991f427565657c34799b020eda828d91 (diff) | |
parent | c1a9383393ef1acbfc87ae1ce8fd5abaa746e801 (diff) | |
download | spm-gcc.tar.gz spm-gcc.tar.bz2 spm-gcc.tar.xz spm-gcc.zip |
Merge branch 'master' into gccgcc
Diffstat (limited to 'scripts/include')
-rw-r--r-- | scripts/include/common.sh | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/scripts/include/common.sh b/scripts/include/common.sh index 974d66c..2383724 100644 --- a/scripts/include/common.sh +++ b/scripts/include/common.sh @@ -18,6 +18,10 @@ function common_build_init { export envname=${package} fi + if [[ "${MAKE}" == "" ]]; then + export MAKE="make" + fi + export srcdir=$(realpath "${dir}/../src/${package}") if [ ! -d "${srcdir}" ]; then echo "Error: Package sources directory not exists for package '${package}'." @@ -111,8 +115,8 @@ function run_autoreconf { echo "cd ${srcdir}/${SUBDIR}" cd "${srcdir}/${SUBDIR}" check_error $? - echo "make distclean" - make distclean + echo "${MAKE} distclean" + ${MAKE} distclean echo "autoreconf ${flags}" autoreconf ${flags} unset flags @@ -169,21 +173,21 @@ function run_make { if [[ "${jobs}" == "" ]]; then if [ -f "/proc/cpuinfo" ]; then jobs="$(cat /proc/cpuinfo|grep processor|wc -l)" + j=" -j${jobs}" else - jobs="1" + j="" fi fi - j=" -j${jobs}" - echo "make$j" - make$j + echo "${MAKE}$j" + ${MAKE}$j check_error $? unset j } function run_make_install { - echo "make install" - make install + echo "${MAKE} install" + ${MAKE} install check_error $? } |