urbackup_backend/build_client.sh
2017-02-27 19:37:51 +00:00

20 lines
334 B
Bash
Executable File

#!/bin/sh
set -e
git reset --hard
python3 build/replace_versions.py
if ! test -e build_client_ok
then
./switch_build.sh client
./download_cryptopp.sh
autoreconf || true
automake --add-missing || true
autoreconf --install
./configure --enable-embedded-cryptopp
touch build_client_ok
fi
./switch_build.sh client
make
make dist