diff options
author | Casey Marshall <casey.marshall@canonical.com> | 2016-09-11 18:14:38 -0500 |
---|---|---|
committer | Casey Marshall <casey.marshall@canonical.com> | 2016-09-11 18:14:38 -0500 |
commit | 823843eadb38ab84cac55d260c9394565af2a3dd (patch) | |
tree | 4eb050b586cad3aace6fd6bdf5893cd19306b632 /contrib/snap/wallet.bash | |
parent | Add snap packaging. (diff) | |
download | monero-823843eadb38ab84cac55d260c9394565af2a3dd.tar.xz |
Fix portability issues discovered with fresh snap install.
ARCH=native fixes SIGILL issues on other amd64 processors.
Static library dependencies where supported.
Package libunbound2 in the snap.
Diffstat (limited to 'contrib/snap/wallet.bash')
-rwxr-xr-x | contrib/snap/wallet.bash | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/snap/wallet.bash b/contrib/snap/wallet.bash index 04aa6c525..004f1371e 100755 --- a/contrib/snap/wallet.bash +++ b/contrib/snap/wallet.bash @@ -1,5 +1,6 @@ #!/bin/bash -e +export LD_LIBRARY_PATH=${SNAP_LIBRARY_PATH}:${SNAP}/usr/lib/x86_64-linux-gnu export HOME=${SNAP_USER_DATA} cd ${SNAP_USER_DATA} |