Skip to content

Commit

Permalink
finally sort out all the dependencies the crypto library needs
Browse files Browse the repository at this point in the history
  • Loading branch information
rkevin-arch committed Oct 26, 2020
1 parent cf81533 commit 363b02b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion utils/xinetd/build-xinetd-base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ copybin() {
u=$1
docker cp -L $CONTAINER:$(docker exec $CONTAINER which $u) $TARGET/bin/
for l in `docker exec $CONTAINER sh -c 'ldd $(which '$u')'`; do
if echo $l | grep '^/lib' >/dev/null; then
if echo $l | grep '^/lib\|^/usr/lib' >/dev/null; then
mkdir -p $TARGET$(dirname $l)
docker cp -L $CONTAINER:$l $TARGET$l
fi
Expand Down Expand Up @@ -55,5 +55,7 @@ mkdir -p $TARGET/usr/lib/
docker cp $CONTAINER:/usr/lib/python3.7 $TARGET/usr/lib/
docker cp $CONTAINER:/usr/lib/python3/dist-packages/ $TARGET/usr/lib/python3.7/
docker cp $CONTAINER:/usr/local/lib/python3.7/dist-packages/timeout_decorator $TARGET/usr/lib/python3.7/dist-packages/
copybin openssl
docker cp -L $CONTAINER:/usr/lib/x86_64-linux-gnu/libffi.so.6 $TARGET/usr/lib/x86_64-linux-gnu/

docker stop $CONTAINER
Binary file added xinetd_base/python/bin/openssl
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 363b02b

Please sign in to comment.