From 2ec1815e6ce8da65244c18fbad56c06721f737cb Mon Sep 17 00:00:00 2001 From: "James Dominic P. Guana" Date: Sat, 10 Apr 2021 18:20:21 +0800 Subject: Revert "Revert "Code clean up and add example"" This reverts commit ea08151ae6582a438db76b738293a0194c964b88. --- autogen.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index 9d394bff..ab75b974 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,5 +1,33 @@ #!/bin/sh # Run this to generate all the initial makefiles, etc. +RED='\033[0;31m' +NC='\033[0m' # No Color + +case "$(uname -s)" in + Linux) + if ! [ -x "$(command -v lsblk)" ]; then + echo '' >&2 + echo -e "${RED}*** ERROR:${NC} lsblk cannot be found. Try installing util-linux or util-linux-ng ${RED}***${NC}" >&2 + echo '' >&2 + exit 1 + fi + if ! [ -x "$(command -v sed)" ]; then + echo '' >&2 + echo -e "${RED}*** ERROR:${NC} sed cannot be found. ***" >&2 + echo '' >&2 + exit 1 + fi + if ! [ -x "$(command -v tr)" ]; then + echo '' >&2 + echo -e "${RED}*** ERROR:${NC} tr cannot be found. ***" >&2 + echo '' >&2 + exit 1 + fi + ;; + *) + ;; +esac + test -n "$srcdir" || srcdir=$(dirname "$0") test -n "$srcdir" || srcdir=. -- cgit v1.2.1