From: Richard C. <ric...@gm...> - 2016-01-03 21:47:32
|
On Thu, Dec 24, 2015 at 07:46:45AM -0500, Chris LaRocque wrote: > While working with buildroot, cross-compiling linuxptp for ARM I ran into; Thanks for posting this fix. > - files=$(find $d -type f -name time.h) > + files=$(find $d -regextype posix-egrep -regex ".*/time.*.h") I would prefer this instead: files=$(find $d -type f -name time.h -o -name timex.h) Can you see if that works for your uClinux setup as well? Thanks, Richard |