Skip to content

Commit

Permalink
use pax-utils package instead of building
Browse files Browse the repository at this point in the history
  • Loading branch information
zbjornson committed Jun 19, 2024
1 parent c838d3b commit b1f7fa0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
4 changes: 2 additions & 2 deletions prebuild/Linux/bundle.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
set -ex

copies=$(lddtree.sh -l build/Release/canvas.node | sed -r -e '/^\/lib/d' -e '/canvas.node$/d');
apt install -y patchelf pax-utils

apt install -y patchelf
copies=$(lddtree.sh -l build/Release/canvas.node | sed -r -e '/^\/lib/d' -e '/canvas.node$/d');

for so in $copies; do
cp $so build/Release
Expand Down
11 changes: 0 additions & 11 deletions prebuild/Linux/preinstall.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
# apt-get-style dependencies aren't done here since the
# linux build is done on a docker image that has them

# ... except for libseccomp, which could go in the docker image, but for now I
# don't want to rebuild it.
apt-get install -y libseccomp2 libseccomp-dev

git clone git://anongit.gentoo.org/proj/pax-utils.git
cd pax-utils
# the last commit before they changed from make to meson
git checkout d9f65269d7182ef1d313e3b87bcea37e45958561
PATH=$PATH:$PWD
make
cd ..

0 comments on commit b1f7fa0

Please sign in to comment.