Fix lxdialog check

This commit is contained in:
Nathan
2025-04-13 14:00:48 -05:00
parent c205d496ee
commit 0853243f05
2 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ trap "rm -f $tmp" 0 1 2 3 15
check() {
$cc -x c - -o $tmp 2>/dev/null <<'EOF'
#include CURSES_LOC
main() {}
int main() { return 0; }
EOF
if [ $? != 0 ]; then
echo " *** Unable to find the ncurses libraries or the" 1>&2