emacs-eask / cli

CLI for building, running, testing, and managing your Emacs Lisp dependencies
https://emacs-eask.github.io/
GNU General Public License v3.0
138 stars 21 forks source link

PKGBUILD: avoid stripping the `eask` binary #249

Closed Hi-Angel closed 6 months ago

Hi-Angel commented 6 months ago

Node puts scripts to some ELF sections, so we can't strip these. Strictly speaking, judging by the offsets they seem to be put into .dynstr section, but leaving that section unstripped doesn't make the error

    Pkg: Error reading from file

…go away. Unless someone is motivated to dig into the list of sections to be put to STRIP_BINARIES, let's just disable it.

Fixes: https://github.com/emacs-eask/cli/issues/248

jcs090218 commented 6 months ago

Thank you!

Hi-Angel commented 6 months ago

And thank you too! 😊