Development Best Practices

From Yocto Project
Revision as of 17:35, 8 March 2018 by Juro Bystricky (talk | contribs) (Created page with "* Do not patch generated files (e.g. configure, Makefile) when they will be regenerated from steps like do_configure (e.g. from configure.ac, Makefile.am). Is important the ti...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
  • Do not patch generated files (e.g. configure, Makefile) when they will be regenerated from steps like do_configure (e.g. from configure.ac, Makefile.am). Is important the timestamps of the base files are newer than the generated files so the system works deterministically and it also ensures consistency in approach across the metadata. An exception would be where we don't regenerate the files (e.g. in gcc configure).