forked from lthn/blockchain
disabled full rebuild, added missing / symbol in appimage
This commit is contained in:
parent
33f7c58146
commit
985af2ba08
2 changed files with 3 additions and 2 deletions
|
|
@ -343,7 +343,7 @@ bool wallets_manager::init(view::i_view* pview_handler)
|
|||
{
|
||||
//app running inside AppImage
|
||||
LOG_PRINT_L0("APPDIR SET: " << env_p);
|
||||
path_to_html = std::string(env_p) + "usr/bin/html";
|
||||
path_to_html = std::string(env_p) + "/usr/bin/html";
|
||||
}
|
||||
else
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -45,7 +45,8 @@ echo "--------------------------------------------------"
|
|||
|
||||
echo "Building...."
|
||||
|
||||
rm -rf build; mkdir -p build/release; cd build/release;
|
||||
#rm -rf build; mkdir -p build/release;
|
||||
cd build/release;
|
||||
cmake $testnet_def -D STATIC=true -D ARCH=x86-64 -D BUILD_GUI=TRUE -D OPENSSL_ROOT_DIR="$OPENSSL_ROOT_DIR" -D CMAKE_PREFIX_PATH="$QT_PREFIX_PATH" -D CMAKE_BUILD_TYPE=Release ../..
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to run cmake"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue