diff options
author | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-02-17 19:29:28 +0100 |
---|---|---|
committer | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-02-17 19:29:28 +0100 |
commit | e9fa0774ed2e7e030a68f5b0ae51fe6dd69fe492 (patch) | |
tree | 37e46c2578bd8f4f435073db01abc514976da8a8 /subr/pkg_install_make.subr | |
parent | 56495632fc8bf612766a9c431e37ff27a903e8c6 (diff) | |
download | midipix_build-e9fa0774ed2e7e030a68f5b0ae51fe6dd69fe492.tar.bz2 midipix_build-e9fa0774ed2e7e030a68f5b0ae51fe6dd69fe492.tar.xz |
Make everything a bit faster.
0) Issues several prayers and sacrifices to Enki under threat of a terrible deluge sent down by Ellil
1) Convert fork-write/read exprs to be non-forking
2) Pass mostly everything by reference
3) Don't bother cleaning the variable namespace because Bourne shell is an abomination
4) Removes broken ./pkgtool.sh -s, --restart-at, --update-diff & ./build.sh --dump-{in,on-abort}
5) Cleanup
Diffstat (limited to 'subr/pkg_install_make.subr')
-rw-r--r-- | subr/pkg_install_make.subr | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/subr/pkg_install_make.subr b/subr/pkg_install_make.subr deleted file mode 100644 index f7ac4640..00000000 --- a/subr/pkg_install_make.subr +++ /dev/null @@ -1,37 +0,0 @@ -# -# 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 |