From e8606bee90e964ca8bd14f7affb86eb86728ff5f Mon Sep 17 00:00:00 2001 From: oddlama Date: Mon, 6 Dec 2021 13:25:14 +0100 Subject: [PATCH] chore: add ncurses to the list of required programs --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 6111bbe..f99665f 100755 --- a/configure +++ b/configure @@ -44,7 +44,7 @@ while [[ $# -gt 0 ]]; do shift done -check_has_programs dialog +check_has_programs dialog ncurses # Wrap dialog in two functions to prevent it from cluttering stderr. function dialog_wrapper() { dialog_out=$(command dialog --colors "$@" 3>&2 2>&1 1>&3 3>&-); }