diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/kconfig/lxdialog/check-lxdialog.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/lxdialog/check-lxdialog.sh b/scripts/kconfig/lxdialog/check-lxdialog.sh index 5075ebf2d..910ca1f7c 100755 --- a/scripts/kconfig/lxdialog/check-lxdialog.sh +++ b/scripts/kconfig/lxdialog/check-lxdialog.sh | |||
@@ -47,7 +47,7 @@ trap "rm -f $tmp" 0 1 2 3 15 | |||
47 | check() { | 47 | check() { |
48 | $cc -x c - -o $tmp 2>/dev/null <<'EOF' | 48 | $cc -x c - -o $tmp 2>/dev/null <<'EOF' |
49 | #include CURSES_LOC | 49 | #include CURSES_LOC |
50 | main() {} | 50 | int main() { return 0; } |
51 | EOF | 51 | EOF |
52 | if [ $? != 0 ]; then | 52 | if [ $? != 0 ]; then |
53 | echo " *** Unable to find the ncurses libraries or the" 1>&2 | 53 | echo " *** Unable to find the ncurses libraries or the" 1>&2 |