diff options
author | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2020-04-10 16:28:02 +0100 |
---|---|---|
committer | Lucio Andrés Illanes Albornoz <lucio@lucioillanes.de> | 2020-04-10 16:28:02 +0100 |
commit | 97b131f6725c1a9fe0c8050ffa7439bed3ef6c41 (patch) | |
tree | 9a8e4ed10e38f7e002d4aadbf4c01f16e93616c4 /subr | |
parent | ed67453081d1f210124d9dfd15e34e2d39395068 (diff) | |
download | midipix_build-97b131f6725c1a9fe0c8050ffa7439bed3ef6c41.tar.bz2 midipix_build-97b131f6725c1a9fe0c8050ffa7439bed3ef6c41.tar.xz |
subr/ex_pkg.subr:ex_pkg_get_packages(): correctly call rtl_log_msg() w/ `warning'.
subr/ex_pkg.subr:ex_pkg_get_packages(): fix info message.
Diffstat (limited to 'subr')
-rw-r--r-- | subr/ex_pkg.subr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subr/ex_pkg.subr b/subr/ex_pkg.subr index e19d987d..ddd9414b 100644 --- a/subr/ex_pkg.subr +++ b/subr/ex_pkg.subr @@ -76,8 +76,8 @@ ex_pkg_get_packages() { ex_pkg_load_dump() { local _pkg_name="${1}" _workdir="${2}" _rc=0; _status=""; if [ ! -e "${_workdir}/${_pkg_name}.dump" ]; then - rtl_log_msg warn "Warning: failed to locate environment dump for package \`%s' in \`%s'." "${_pkg_name}" "${_workdir}"; - rtl_log_msg info "Re_building package \`%s' w/ --dump-in _build..." "${_pkg_name}"; + rtl_log_msg warning "Warning: failed to locate environment dump for package \`%s' in \`%s'." "${_pkg_name}" "${_workdir}"; + rtl_log_msg info "Rebuilding package \`%s' w/ --dump-in _build..." "${_pkg_name}"; (export ARCH BUILD BUILD_DLCACHEDIR BUILD_WORKDIR \ PREFIX PREFIX_CROSS PREFIX_MINGW32 PREFIX_MINIPIX \ PREFIX_NATIVE PREFIX_ROOT PREFIX_RPM; |