On Monday 16 September 2013 20:35:49 Brian Norris wrote: > On Sat, Aug 24, 2013 at 07:19:42PM -0400, Mike Frysinger wrote: > > On Wednesday 03 July 2013 22:01:52 Brian Norris wrote: > > > On Wed, May 8, 2013 at 9:27 AM, Mike Frysinger wrote: > > > > --- a/include/common.h > > > > +++ b/include/common.h > > > > > > > > + if (strcmp("\n", line) != 0) { > > > > + switch (rpmatch(line)) { > > > > > > rpmatch() is not POSIX-compliant and is not available on my uclibc, so > > > this breaks my compile. > > > > i added this to uClibc already :) > > So I have to upgrade uClibc if I'm going to upgrade mtd-utils. Nice! it's a one line change to a header file that you could easily do locally. no need to be facetious. #define rpmatch(line) (line[0] == 'Y' || line[0] == 'y') -mike