Consider removing autogenerated files from tarballs
1–10 of 11 posts
Re: Consider removing autogenerated files from tarballs
#2Re: Consider removing autogenerated files from tarballs
#3Re: Consider removing autogenerated files from tarballs
#4Re: Consider removing autogenerated files from tarballs
#5Re: Consider removing autogenerated files from tarballs
#6The idea here is ok, but if you can't trust the people making releases of your project then you have critical issues. I know making releases seems like a chore that almost anyone can do, but it is so critical that it must be handled by trusted individuals. Everyone would ideally be trustworthy. But the point is, binary files cannot easily be reviewed and the simplicity of making a release gives people a false sense of security. If you're gonna allow untrusted people to make releases, you might as well give up on everything else you're doing to be secure, because it hardly matters. This is why we need reproducible builds too by the way. The less you have to trust, the better.
Re: Consider removing autogenerated files from tarballs
#7Isn't this part of what the traditional (?) target of " make distclean " does? (Remove everything that ./configure generated.)
Re: Consider removing autogenerated files from tarballs
#8Re: Consider removing autogenerated files from tarballs
#9No configure? Sorry, no. Very few people are able to do sh autogen.sh or autoreconf -if; libtoolize
Re: Consider removing autogenerated files from tarballs
#10No configure? Sorry, no. Very few people are able to do sh autogen.sh or autoreconf -if; libtoolize
Then that's what they will have to learn then isn't it?