Crispy Doom server behind doom.jerryaldrichiii.com
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Many thanks to https://www.h3manth.com/content/copying-shared-library-dependencies
|
|
|
|
set -e
|
|
|
|
cp $1 /export
|
|
|
|
deps=$(ldd $1 | awk 'BEGIN{ORS=" "}$1~/^\//{print $1}$3~/^\//{print $3}' | sed 's/,$/\n/')
|
|
|
|
for dep in $deps; do
|
|
echo "Copying $dep to $2"
|
|
cp "$dep" "$2"
|
|
done
|
|
|