Blob Blame History Raw
#
# set +o errexit -o noglob -o nounset is assumed.
#

pkg_install_make() {
	local _libtool="" _rc=0 _subdir="";
	case "${PKG_LIBTOOL:-}" in
	"")	_libtool=""; ;;
	none)	_libtool=""; ;;
	*)	_libtool="${PKG_LIBTOOL}"; ;;
	esac;
	for _subdir in ${PKG_MAKE_SUBDIRS:-:}; do
		if [ "${_subdir}" = ":" ]; then
			_subdir="";
		fi;
		if [ "${#_libtool}" -gt 0 ]; then
			export MAKE="make LIBTOOL=${_libtool}";
		fi;
		rtl_run_cmd_unsplit "${PKG_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}"}; _rc="${?}";
		if [ "${#_libtool}" -gt 0 ]; then
			unset MAKE;
		fi;
		if [ "${_rc}" -ne 0 ]; then
			return 1;
		fi;
	done;
};

# vim:filetype=sh