1
0

libsecp256k1: update hardcoded .so lib name in binaries (#8186)

follow-up 7d83335e34
This commit is contained in:
ghost43
2023-02-04 01:36:19 +00:00
committed by GitHub
parent c66411f47e
commit 0eea47c78d
6 changed files with 8 additions and 8 deletions

View File

@@ -76,12 +76,12 @@ info "installing python."
)
if [ -f "$DLL_TARGET_DIR/libsecp256k1.so.0" ]; then
if [ -f "$DLL_TARGET_DIR/libsecp256k1.so.1" ]; then
info "libsecp256k1 already built, skipping"
else
"$CONTRIB"/make_libsecp256k1.sh || fail "Could not build libsecp"
fi
cp -f "$DLL_TARGET_DIR/libsecp256k1.so.0" "$APPDIR/usr/lib/libsecp256k1.so.0" || fail "Could not copy libsecp to its destination"
cp -f "$DLL_TARGET_DIR"/libsecp256k1.so.* "$APPDIR/usr/lib/" || fail "Could not copy libsecp to its destination"
# note: libxcb-util1 is not available in debian 10 (buster), only libxcb-util0. So we build it ourselves.