From c61d139da56610f25b1def3315f7a12a154a865b Mon Sep 17 00:00:00 2001 From: Michael Iedema Date: Tue, 18 Oct 2016 11:13:27 +0200 Subject: [PATCH] fix messages to indicate only 16.04 is officially supported --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 98e5624..0f5622a 100755 --- a/build.sh +++ b/build.sh @@ -81,10 +81,10 @@ fi echo "# checking for a compatible build host" if hash lsb_release 2>/dev/null; then ubuntu=`lsb_release -r -s` - if [ $ubuntu != "12.04" ]; then - echo "# - WARNING : dev-tools is currently only tested on Ubuntu 12.04, YMMV. Please open an issue if you've used it successfully on another version of Ubuntu." + if [ $ubuntu != "16.04" ]; then + echo "# - WARNING : dev-tools is currently only tested on Ubuntu 16.04, YMMV. Please open an issue if you've used it successfully on another version of Ubuntu." else - echo "# - fully supported host detected: Ubuntu 12.04" + echo "# - fully supported host detected: Ubuntu 16.04" fi else echo "# - ERROR : Sorry, dev-tools currently only supports Ubuntu as the host OS. Please open an issue for your desired host."