summaryrefslogtreecommitdiffhomepage
path: root/subr/pkg_install_files.subr
diff options
context:
space:
mode:
authorLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-08-26 20:39:04 +0200
committerLucio Andrés Illanes Albornoz <lucio@lucioillanes.de>2021-08-26 20:39:04 +0200
commite493dc0247f05ee9f700d50e8ddaa09b5a1ab06a (patch)
tree15c6ed9e48f3cf820b4e1f46008ee425a05128ce /subr/pkg_install_files.subr
parentff862f04542067e8edea1ffb5a6f5527d975172c (diff)
downloadmidipix_build-e493dc0247f05ee9f700d50e8ddaa09b5a1ab06a.tar.bz2
midipix_build-e493dc0247f05ee9f700d50e8ddaa09b5a1ab06a.tar.xz
Implements localised message files.
Diffstat (limited to 'subr/pkg_install_files.subr')
-rw-r--r--subr/pkg_install_files.subr2
1 files changed, 1 insertions, 1 deletions
diff --git a/subr/pkg_install_files.subr b/subr/pkg_install_files.subr
index d387293b..0cd03e43 100644
--- a/subr/pkg_install_files.subr
+++ b/subr/pkg_install_files.subr
@@ -92,7 +92,7 @@ pkgp_install_files_strip() {
if [ "${_stripfl:-0}" -eq 1 ]; then
for _bin_path in $(find "${_tree_root}" -perm /a=x -type f); do
if objdump -sj .debug_frame -j .debug_info "${_bin_path}" >/dev/null 2>&1; then
- rtl_log_msg "pkg_strip" "Stripping %s..." "${_bin_path}";
+ rtl_log_msg "pkg_strip" "${MSG_pkg_strip}" "${_bin_path}";
if ! "${PKG_TARGET}-strip" "${_bin_path}"; then
return 1;
fi;