mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
Fix ubuntu build
This commit is contained in:
parent
143da2c390
commit
f74ef30ace
2 changed files with 2 additions and 2 deletions
2
build.sh
2
build.sh
|
@ -30,7 +30,7 @@ fi
|
||||||
|
|
||||||
# Platform indepenent settings
|
# Platform indepenent settings
|
||||||
platform=$(get_platform)
|
platform=$(get_platform)
|
||||||
if [ "$platform" == "linux" ]; then
|
if [ "$platform" == "linux32" ] || [ "$platform" == "linux64" ]; then
|
||||||
distro=$(lsb_release -is)
|
distro=$(lsb_release -is)
|
||||||
if [ "$distro" == "Ubuntu" ]; then
|
if [ "$distro" == "Ubuntu" ]; then
|
||||||
CONFIG="$CONFIG libunwind_off"
|
CONFIG="$CONFIG libunwind_off"
|
||||||
|
|
|
@ -96,7 +96,7 @@ fi
|
||||||
# since filename conflict (random.c.obj)
|
# since filename conflict (random.c.obj)
|
||||||
# for Linux, we use libunbound shipped with the system, so we don't need to build it
|
# for Linux, we use libunbound shipped with the system, so we don't need to build it
|
||||||
|
|
||||||
if [ "$platform" != "linux" ]; then
|
if [ "$platform" != "linux32" ] && [ "$platform" != "linux64" ]; then
|
||||||
echo "Building libunbound..."
|
echo "Building libunbound..."
|
||||||
pushd $MONERO_DIR/build/release/external/unbound
|
pushd $MONERO_DIR/build/release/external/unbound
|
||||||
# no need to make, it was already built as dependency for libwallet
|
# no need to make, it was already built as dependency for libwallet
|
||||||
|
|
Loading…
Reference in a new issue