Re: Detecting Compilation Errors in Busybox Configurations

2014-05-01 Thread Christian Kästner
Minor issue: Since commit 3dfe0ae5a busybox does not compile without CONFIG_FEATURE_SYSLOG, because LOG_ERR in line 14 is undefined then. Best regards, Christian On Mon, Apr 14, 2014, at 09:24 AM, Christian Kästner wrote: Hi, minor issue: commit 69b114 introduced a compile-time error

[PATCH 0/2] fix find_execable function and which code cleanup

2014-05-01 Thread Tito
Hi, while trying to cleanup the debianutils/which command I've spotted a minor glitch in bb's find_execable function as it is not able to handle zero lenght prefixes in the PATH variable: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap08.html 8.3 Other Environment Variables PATH

Re: [PATCH 0/2] fix find_execable function and which code cleanup

2014-05-01 Thread Ralf Friedl
Tito wrote: while trying to cleanup the debianutils/which command I've spotted a minor glitch in bb's find_execable function as it is not able to handle zero lenght prefixes in the PATH variable: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap08.html 8.3 Other Environment

Re: [PATCH 0/2] fix find_execable function and which code cleanup

2014-05-01 Thread Tito
On Thursday 01 May 2014 21:30:25 Ralf Friedl wrote: Tito wrote: while trying to cleanup the debianutils/which command I've spotted a minor glitch in bb's find_execable function as it is not able to handle zero lenght prefixes in the PATH variable:

Re: Detecting Compilation Errors in Busybox Configurations

2014-05-01 Thread Denys Vlasenko
On Monday 14 April 2014 15:24, Christian Kästner wrote: Hi, minor issue: commit 69b114 introduced a compile-time error (scoping issue of variable had_progress) when CONFIG_LESS is activated but CONFIG_FEATURE_LESS_REGEXP is not. Fixed. Thanks!

Re: Detecting Compilation Errors in Busybox Configurations

2014-05-01 Thread Denys Vlasenko
On Thursday 01 May 2014 15:27, Christian Kästner wrote: Minor issue: Since commit 3dfe0ae5a busybox does not compile without CONFIG_FEATURE_SYSLOG, because LOG_ERR in line 14 is undefined then. Best regards, Christian On Mon, Apr 14, 2014, at 09:24 AM, Christian Kästner wrote: Hi,

Re: bug in busybox sed with non-ascii chars

2014-05-01 Thread Denys Vlasenko
On Wednesday 30 April 2014 10:31, Natanael Copa wrote: Hi, I came across a bug (or feature) in busybox sed when trying to build firefox-29. Testcase based on what firefox's configure scripts does: ASCII='AA' NONASCII=$'\246\246' echo -e ($ASCII)\n($NONASCII) | busybox sed 's/$/,/'