On Fri, Jan 19, 2018 at 12:51:52PM -0500, Robert P. J. Day wrote: > > just finished teaching a couple git courses and, after class, a > student came up and described a rather weird problem -- in short: > > 1) before build, "git diff" shows nothing > 2) do the standard build > 3) suddenly, "git diff" shows some changes > > that's all the info i was given, but it *seems* clear that the build > process itself was making changes to one or more tracked files. > > technically, i guess one can design a build system to do pretty > much anything, but is it fair to say that this is a really poor design > decision? admittedly, this isn't specifically a git question, but i'm > open to opinions on something that strikes me as a bad idea. I have seen what you describe, but it had a good cause: 1. The source repo contained some intermediate generated source, eg foo.x -> foo.c -> foo.o 2. The output of the tool that did foo.a -> foo.c differed due to some factor on the system (different version, different config in /etc etc). 3. The initial checkout caused the mtime of foo.c to be just older newer than foo.x, so the build system decided to regen foo.c. 4. (optional) The makefile had conditional rules to skip the regen if the tool was not present. Until the tool output changed, even if the file was regenerated, it was identical, so it didn't show up in diff. What are the possible mistakes here? - The intermediate source possibly should not be committed [depending on the tool, this isn't always an option] - The build system scripts (makefile etc) contains a mistake. - Some final (non-intermediate/non-source) file was committed. I've seen similar patterns for GNU Bison, autoconf, and lots of other tools. -- Robin Hugh Johnson Gentoo Linux: Dev, Infra Lead, Foundation Treasurer E-Mail : robbat2@xxxxxxxxxx GnuPG FP : 11ACBA4F 4778E3F6 E4EDF38E B27B944E 34884E85 GnuPG FP : 7D0B3CEB E9B85B1F 825BCECF EE05E6F6 A48F6136
Attachment:
signature.asc
Description: Digital signature