fix 'make menuconfig' requires the ncurses libraries issue on fedora. refer to https://bbs.archlinux.org/viewtopic.php?id=295859

pull/90/head
Franklin 2024-07-14 18:57:18 +08:00
parent 2d4a3d9e6c
commit 4f598be99d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,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() {}
EOF
if [ $? != 0 ]; then
echo " *** Unable to find the ncurses libraries or the" 1>&2