Dear Jean-Christophe PLAGNIOL-VILLARD, In message <[EMAIL PROTECTED]> you wrote: > > +find_config_errors: > + @echo "Search for config errors" > + @git-grep CFG_ | cut -d: -f1 | sort -u | xargs -I {} > tools/find_config_errors -f {} > +
Hm... should we not just use "grep -r *" so this will also work when we don't have a full git repository? And instead of running another process with "cut", a "-l" argument to grep (or even git-grep) would do the same? [Also note that "git-grep" is deprecated, "git grep" should be used instead.] I think we should change this into: grep -l -r * | xargs tools/find_config_errors -f What do you think? Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: [EMAIL PROTECTED] There are three ways to get something done: do it yourself, hire someone, or forbid your kids to do it. _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot