urbackup_backend/build_client.sh
2014-11-16 19:43:55 +01:00

20 lines
303 B
Bash

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