summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_build.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-05-06 11:01:05 +0100
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-05-06 11:01:05 +0100
commit7ab7cc8ac3dd32fd3db10f5d72ec2b15f0990c6f (patch)
treefa66265df4263993c03c56af78e3f2db32dd4c69 /subr/pkg_build.subr
parentf3faf2752ecb662905dcf1ac5b588100a55aa2b6 (diff)
downloadmidipix_build-7ab7cc8ac3dd32fd3db10f5d72ec2b15f0990c6f.tar.bz2
midipix_build-7ab7cc8ac3dd32fd3db10f5d72ec2b15f0990c6f.tar.xz
patches/texinfo{,_host}-6.7.local.patch: added.
midipix.env:${DEFAULT_{CROSS,HOST,NATIVE}_MAKE}: default to make. subr/pkg_{build,install}.subr: honour ${PKG_MAKE}. subr/pkg_build.subr: export "make LIBTOOL=${PKG_LIBTOOL}" during ${PKG_MAKE} if non-zero and not "none". subr/pkg_configure.subr: export "make LIBTOOL=${PKG_LIBTOOL}" during ${PKG_CONFIGURE} if non-zero and not "none". subr/pkg_install_make.subr: export "make LIBTOOL=${PKG_LIBTOOL}" during ${PKG_MAKE} if non-zero and not "none".
Diffstat (limited to 'subr/pkg_build.subr')
-rw-r--r--subr/pkg_build.subr14
1 files changed, 10 insertions, 4 deletions
diff --git a/subr/pkg_build.subr b/subr/pkg_build.subr
index 327edae2..1c6712f7 100644
--- a/subr/pkg_build.subr
+++ b/subr/pkg_build.subr
@@ -3,7 +3,7 @@
#
pkg_build() {
- local _libtool="" _makeflags_verbosity="${PKG_MAKEFLAGS_VERBOSITY:-none}" _no_autoconf="" _subdir="";
+ local _libtool="" _makeflags_verbosity="${PKG_MAKEFLAGS_VERBOSITY:-none}" _no_autoconf="" _rc=0 _subdir="";
case "${PKG_LIBTOOL:-}" in
"") _libtool=""; ;;
none) _libtool=""; ;;
@@ -19,10 +19,13 @@ pkg_build() {
if [ "${_subdir}" = ":" ]; then
_subdir="";
fi;
+ if [ "${#_libtool}" -gt 0 ]; then
+ export MAKE="make LIBTOOL=${_libtool}";
+ fi;
# N.B. We only specify CC= here if the current package does not use GNU
# autoconf as it often abuses it by appending -std={gnu99,...} to it
# instead of amending CFLAGS.
- rtl_run_cmd_unsplit make \
+ rtl_run_cmd_unsplit "${PKG_MAKE}" \
${PKG_MAKEFLAGS_BUILD:-} \
${PKG_MAKEFLAGS_BUILD_EXTRA:-} \
"AR=${PKG_AR}" "${_no_autoconf:+CC=${PKG_CC}}" "RANLIB=${PKG_RANLIB}" \
@@ -38,8 +41,11 @@ pkg_build() {
"${PKG_PKG_CONFIG_LIBDIR:+PKG_CONFIG_LIBDIR=${PKG_PKG_CONFIG_LIBDIR}}" \
${_libtool:+"LIBTOOL=${_libtool}"} \
${_makeflags_verbosity} \
- ${_subdir:+-C "${_subdir}"};
- if [ "${?}" -ne 0 ]; then
+ ${_subdir:+-C "${_subdir}"}; _rc="${?}";
+ if [ "${#_libtool}" -gt 0 ]; then
+ unset MAKE;
+ fi;
+ if [ "${_rc}" -ne 0 ]; then
return 1;
fi;
done;