summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install_make.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-06-02 10:11:10 +0100
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2020-06-02 10:11:10 +0100
commit522027077c1d865cac5be24762842441d5748630 (patch)
treed8553ac80cd66f2d66b3f4bc9d696af03fdd3a97 /subr/pkg_install_make.subr
parent0f3d9c1693d0be0553c5e61c9858cc9e5034ce08 (diff)
downloadmidipix_build-522027077c1d865cac5be24762842441d5748630.tar.bz2
midipix_build-522027077c1d865cac5be24762842441d5748630.tar.xz
midipix.env:${DEFAULT_BUILD_VARS}: adds ${PKG_CFLAGS_BUILD} and ${PKG_MAKE_SUBDIRS}.
subr/pkg_{build,install}.subr: honour ${PKG_MAKE_SUBDIRS}. etc/README.md: updated.
Diffstat (limited to 'subr/pkg_install_make.subr')
-rw-r--r--subr/pkg_install_make.subr27
1 files changed, 18 insertions, 9 deletions
diff --git a/subr/pkg_install_make.subr b/subr/pkg_install_make.subr
index a5e58f60..2afcb7b8 100644
--- a/subr/pkg_install_make.subr
+++ b/subr/pkg_install_make.subr
@@ -3,20 +3,29 @@
#
pkg_install_make() {
- local _libtool="";
+ local _libtool="" _subdir="";
case "${PKG_LIBTOOL:-}" in
"") _libtool=""; ;;
none) _libtool=""; ;;
*) _libtool="${PKG_LIBTOOL}"; ;;
esac;
- rtl_run_cmd_unsplit make \
- ${PKG_MAKEFLAGS_INSTALL:-} \
- ${PKG_MAKEFLAGS_INSTALL_EXTRA:-} \
- AR="${PKG_AR}" CC="${PKG_CC}" RANLIB="${PKG_RANLIB}" \
- "${PKG_RANLIB_INSTALL:+RANLIB=${PKG_RANLIB_INSTALL}}" \
- ${_libtool:+"LIBTOOL=${_libtool}"} \
- "${PKG_MAKE_INSTALL_VNAME:-DESTDIR}=${PKG_DESTDIR}/" \
- ${PKG_INSTALL_TARGET:-install};
+ for _subdir in ${PKG_MAKE_SUBDIRS:-:}; do
+ if [ "${_subdir}" = ":" ]; then
+ _subdir="";
+ fi;
+ rtl_run_cmd_unsplit make \
+ ${PKG_MAKEFLAGS_INSTALL:-} \
+ ${PKG_MAKEFLAGS_INSTALL_EXTRA:-} \
+ AR="${PKG_AR}" CC="${PKG_CC}" RANLIB="${PKG_RANLIB}" \
+ "${PKG_RANLIB_INSTALL:+RANLIB=${PKG_RANLIB_INSTALL}}" \
+ ${_libtool:+"LIBTOOL=${_libtool}"} \
+ "${PKG_MAKE_INSTALL_VNAME:-DESTDIR}=${PKG_DESTDIR}/" \
+ ${PKG_INSTALL_TARGET:-install} \
+ ${_subdir:+-C "${_subdir}"};
+ if [ "${?}" -ne 0 ]; then
+ return 1;
+ fi;
+ done;
};
# vim:filetype=sh