I recently upgraded my OS and upgraded my autotools versions with it. Now, one branch of my project will no longer build because automake no longer is using the Makefile.am files to generate the Makefile.in files. It is strange to me:
- automake 1.11.6 works for the same branch.
- automake 1.12.2 works for later branches, just not this branch. The major difference to the build process for the later branches is that they compile using g++ instead of gcc, although I don't see why that would affect this step of things.
Any ideas on where to look or how to track this down? I'm still very much finding my way in the world of autotools. My initial comparison of Makefile.am and configure.ac haven't led me towards anything promising. Obviously, I can put an older version of automake on this machine but I'm wondering if some underlying issue is affecting things here.
autoreconf
(like abootstrap.sh
file) write a validconfigure
? Doesconfigure
run? – ldav1sautoreconf
(or whatever invokes it) is not getting to the point where it's writingMakefile.in
files. – ldav1s