From 1f98fb513aa1ca8c3fa26b67d55f205d238a63bf Mon Sep 17 00:00:00 2001 From: jakobst1n Date: Tue, 29 Oct 2024 11:36:16 +0100 Subject: Fix some broken points --- configure | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'configure') diff --git a/configure b/configure index edad8d2..13e1fa4 100755 --- a/configure +++ b/configure @@ -8,6 +8,23 @@ function generate_makefile { make Makefile } +if ! command -v dialog; then + echo '"dialog" not found, please install before continuing" + exit 1 +fi +if ! command -v m4; then + echo 'm4" not found, please install before continuing" + exit 1 +fi +if ! command -v make; then + echo 'make" not found, please install before continuing" + exit 1 +fi +if ! command -v awk; then + echo 'awk" not found, please install before continuing" + exit 1 +fi + if [ -f "${CONFIG_FILE}" ]; then dialog \ --keep-tite \ -- cgit v1.2.3