aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kconfig/lxdialog/check-lxdialog.sh2
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
47check() { 47check() {
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
50main() {} 50int main() { return 0; }
51EOF 51EOF
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