If the build prereq checks fail, you get the message Prerequisite check failed. Use FORCE=1 to override.
But re-trying with "make menuconfig FORCE=1" gives you the same result. This patch fixes that. Signed-off-by: Lawrence D'Anna <[email protected]> --- include/prereq.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/prereq.mk b/include/prereq.mk index 33ac278..770dafd 100644 --- a/include/prereq.mk +++ b/include/prereq.mk @@ -14,7 +14,7 @@ prereq: cat $(TMP_DIR)/.prereq-error; \ rm -f $(TMP_DIR)/.prereq-error; \ echo; \ - false; \ + $(if $(FORCE),true,false); \ fi .SILENT: prereq -- 2.3.8 (Apple Git-58) _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel
