diff options
author | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-03-30 11:50:51 +0200 |
---|---|---|
committer | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-03-30 11:50:51 +0200 |
commit | f57002a804cca7601e82d9baef4288691b3eed0a (patch) | |
tree | 6a996f8754b52dc35177415bb3a067fb1e911a17 | |
parent | 94ccc094bb7e43caf7f46a2c4362ae265c524c38 (diff) | |
download | midipix_build-f57002a804cca7601e82d9baef4288691b3eed0a.tar.bz2 midipix_build-f57002a804cca7601e82d9baef4288691b3eed0a.tar.xz |
Fix stripping.
-rw-r--r-- | etc/build.msgs.en | 2 | ||||
-rw-r--r-- | subr.pkg/pkg_install_files.subr | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/etc/build.msgs.en b/etc/build.msgs.en index 2823ba8c..1d468eba 100644 --- a/etc/build.msgs.en +++ b/etc/build.msgs.en @@ -26,7 +26,7 @@ MSG_pkg_skip_finished="1;Skipping finished package \`%s'."; MSG_pkg_skip_unknown="1;Error: unknown package \`%s'."; MSG_pkg_stderrout_log="2;%s/%s_stderrout.log:"; MSG_pkg_step="2;Finished build step %s of package \`%s'."; -MSG_pkg_strip="1;Stripping %s..."; +MSG_pkg_strip="1;Stripped %s"; MSG_zipdist_begin="0;Building deployable distribution ZIP archive..."; MSG_zipdist_finished="0;Finished building deployable distribution ZIP archive."; diff --git a/subr.pkg/pkg_install_files.subr b/subr.pkg/pkg_install_files.subr index ac471188..aebba9a1 100644 --- a/subr.pkg/pkg_install_files.subr +++ b/subr.pkg/pkg_install_files.subr @@ -58,13 +58,12 @@ pkgp_install_files_perms() { }; pkgp_install_files_strip() { - local _ppifs_files_stripped="" _ppifs_pkg_minipixfl=0 _ppifs_rc=0; + local _ppifs_pkg_minipixfl=0 _ppifs_rc=0; rtl_match "${PKG_NAME}" "*_minipix"; _ppifs_pkg_minipixfl="${?}"; if [ \( "${_ppifs_pkg_minipixfl}" -eq 0 \) -a \( "${ARG_DEBUG_MINIPIX:-0}" -eq 0 \) ]\ || [ \( "${BUILD_KIND}" = release \) -a \( "${PKG_BUILD_TYPE}" = native \) ]; then ex_rtl_strip_files \ - \$_ppifs_files_stripped \ "${PKG_TARGET}-strip" \ "${PKG_DESTDIR}" \ -- \ |