Oh crap it’s back. This seems to happen not initially, but after gmake
automatically decides to re-run configuref
0config.status: error: in `/home/user/src/bitcoin':
1config.status: error: Something went wrong bootstrapping makefile fragments
2 for automatic dependency tracking. If GNU make was not used, consider
3 re-running the configure script with MAKE="gmake" (or whatever is
4 necessary). You can also try re-running configure with the
5 '--disable-dependency-tracking' option to at least be able to build
6 the package (albeit without support for automatic dependency tracking).
7See `config.log' for more details
8gmake: *** [Makefile:718: Makefile] Error 1
Using --disable-dependency-tracking
is an extremely bad idea because it essentially removes make’s ability to detect what files are affected by changes during development or when pulling from git. This means you can get ‘fault ines’ where one side of the binary is compiled against a certain data structure and another with the changed one. This has resulted in hours of debugging headaches for me. Dont’ do it.