Fix configure script to not fail on non-Ubuntu machines

This commit is contained in:
William Brawner 2018-02-15 08:06:33 -06:00
parent f1009a3808
commit cf51578d1a

5
configure vendored
View file

@ -3,9 +3,8 @@
source /etc/os-release
if [ "$ID" != "ubuntu" ]; then
echo "Unsupported build system. \
Please try on Ubuntu, or modify the script to support your system.";
exit 1;
echo "Unsupported build system. If you experience any build issues,
please try on Ubuntu, or modify the script to support your system.";
fi
sudo apt install -y cmake libcurl3-openssl-dev libsqlite3-dev libxml2-dev