Am 28.01.2010 02:54, schrieb Peter Stuge:
- printf "#include "config.h"\n" >> $(obj)/build.ht
- mv $(obj)/build.ht $(obj)/build.h
Is build.h strictly neccessary for the build? If yes, why?
It's included in lots of places, and drags in config.h (see last printf line). If that one doesn't exist completely, you'll get lots of warnings/errors about non-existant symbols, and sure miscompiles.
Patrick