Re: [LEDE-DEV] build system question

2017-07-20 Thread Torbjorn Jansson
On 2017-07-20 10:12, Jo-Philipp Wich wrote: Hi Torbjorn, use the IGNORE_ERRORS flag when invoking make: make ... IGNORE_ERRORS="n m" This will cause the build system to skip failing packages which are not marked builtin. ~ Jo thanks, looks like it is working. what do "n m" mean? just won

Re: [LEDE-DEV] build system question

2017-07-20 Thread Jo-Philipp Wich
Hi Torbjorn, use the IGNORE_ERRORS flag when invoking make: make ... IGNORE_ERRORS="n m" This will cause the build system to skip failing packages which are not marked builtin. ~ Jo ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://list

Re: [LEDE-DEV] build system question

2017-07-20 Thread Mathias Kresin
20.07.2017 09:59, Torbjorn Jansson: hi how do you convince the build system to continue building even if one of the packages from the feeds fails? 'make IGNORE_ERRORS=1' is what you are looking for. Use BUILD_LOG=1 to see why packages fail to compile. Mathias _