Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix esp8266-rtos-sdk make menuconfig #74

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
diff --git a/tools/kconfig/Makefile b/tools/kconfig/Makefile
index 9fc367b4..fa680125 100644
--- a/tools/kconfig/Makefile
+++ b/tools/kconfig/Makefile
@@ -214,7 +214,7 @@ clean-files += $(all-objs) $(all-deps) conf-idf mconf-idf conf mconf

# Check that we have the required ncurses stuff installed for lxdialog (menuconfig)
PHONY += dochecklxdialog
-$(addprefix ,$(lxdialog)): dochecklxdialog
+#$(addprefix ,$(lxdialog)): dochecklxdialog
dochecklxdialog: lxdialog
$(CONFIG_SHELL) $(check-lxdialog) -check $(CC) $(CFLAGS) $(LOADLIBES_mconf)

@@ -349,4 +349,3 @@ clean:
rm -f $(clean-files)

-include $(all-deps)
-
diff --git a/tools/kconfig/lxdialog/check-lxdialog.sh b/tools/kconfig/lxdialog/check-lxdialog.sh
index e9daa627..568564ad 100755
--- a/tools/kconfig/lxdialog/check-lxdialog.sh
+++ b/tools/kconfig/lxdialog/check-lxdialog.sh
@@ -56,7 +56,7 @@ ccflags()
}

# Temp file, try to clean up after us
-tmp=.lxdialog.tmp
+tmp=/tmp/.lxdialog.tmp
trap "rm -f $tmp ${tmp%.tmp}.d" 0 1 2 3 15

# Check if we can link to ncurses
Loading