Fix configure script to not fail on non-Ubuntu machines
This commit is contained in:
parent
f1009a3808
commit
cf51578d1a
1 changed files with 2 additions and 3 deletions
5
configure
vendored
5
configure
vendored
|
@ -3,9 +3,8 @@
|
||||||
source /etc/os-release
|
source /etc/os-release
|
||||||
|
|
||||||
if [ "$ID" != "ubuntu" ]; then
|
if [ "$ID" != "ubuntu" ]; then
|
||||||
echo "Unsupported build system. \
|
echo "Unsupported build system. If you experience any build issues,
|
||||||
Please try on Ubuntu, or modify the script to support your system.";
|
please try on Ubuntu, or modify the script to support your system.";
|
||||||
exit 1;
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
sudo apt install -y cmake libcurl3-openssl-dev libsqlite3-dev libxml2-dev
|
sudo apt install -y cmake libcurl3-openssl-dev libsqlite3-dev libxml2-dev
|
||||||
|
|
Loading…
Reference in a new issue