> I propose to build release tarballs from clean checked out source, and > to set file timestamps right after checkout, e.g. > > git clone /path/to/strace.git && > cd strace && > git-set-file-times && > autoreconf -i && > ./configure --enable-maintainer-mode && > TAR_OPTIONS='--owner=0 --group=0 --numeric-owner --mode=go-w,go+rX' make > distcheck
Why don't you put that into a script or make rule that starts with "git archive $TAG | tar xf - -C tmpdir"? > Maybe we could sacrifice portability and add this TAR_OPTIONS definition to > Makefile.am Yes, please do. Portability is not an issue inside "if MAINTAINER_MODE". Unpacking the dist, configure --enable-maintainer-mode + make distcheck should match what we do for creating the official tarball. Thanks, Roland ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Strace-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/strace-devel
