On Wed, Mar 22, 2017 at 08:48:42PM -0700, Luya Tshimbalanga wrote: > I just hit an issue when scratch building embree on either rawhide and F26: > > https://koji.fedoraproject.org/koji/taskinfo?taskID=18532546 > > Does anyone encounter similar problem? This is a bug in the spec file, the options you are trying to use are: -Wall -Werror=format-security ... -Wno-all -Wno-all (why are you using it?) disables all warning options but the explicitly set ones, so it means only -Wformat-security is enabled, but not -Wformat. So, either you need ... -Wno-all -Wformat, or ... -Wno-all -Wno-format-security depending on what you want to achieve. Jakub _______________________________________________ devel mailing list -- devel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to devel-leave@xxxxxxxxxxxxxxxxxxxxxxx