I am compiling a large library which uses the autotools build process. There are many makefiles. Each of them are getting CFLAGS = .... -Werror
.
When I attempt to compile there are some minor warnings which kill the build on my setup.
I would like to try building despite the warnings so I need to take the -Werror
out of all the makefiles. Is there a way to prevent autotools from putting in -Werror
in all these makefiles?