Re: [gnu-prog-discuss] Automake dist reproducibility

2015-12-22 Thread Pádraig Brady
On 22/12/15 17:00, Mike Gerwitz wrote: > There is ongoing discussion about reproducible builds within GNU. I'm > having trouble figuring out the best approach for deterministic > distribution archives using Automake. I've not thought much about this, but I'm wondering about how useful determinist

Re: avoiding program name transformations on libexec

2014-09-10 Thread Pádraig Brady
On 09/10/2014 03:31 PM, Pádraig Brady wrote: > On 09/10/2014 03:08 PM, Nick Bowler wrote: >> On 2014-09-10 10:22 +0100, Pádraig Brady wrote: >>> I was able to work around the issue here as there is only a single >>> item in libexec in my project which I excl

Re: avoiding program name transformations on libexec

2014-09-10 Thread Pádraig Brady
On 09/10/2014 03:08 PM, Nick Bowler wrote: > On 2014-09-10 10:22 +0100, Pádraig Brady wrote: >> I was able to work around the issue here as there is only a single >> item in libexec in my project which I excluded from $(transform) like: >> >> transform = /mypro

avoiding program name transformations on libexec

2014-09-10 Thread Pádraig Brady
I was surprised that $(transform) is applied to stuff installed in libexec. Specifically install-pkglibexecPROGRAMS: passes the names through $(transform). It's surprising as libexec stuff is for programs referenced internally by the program rather than by the user and so is both in a project speci

Re: Incorrect use of USE_XATTR in coreutils-8.4

2010-01-29 Thread Pádraig Brady
On 22/01/10 13:17, Jim Meyering wrote: [Cc'd autoconf for a suggestion below] Pádraig Brady wrote: + @grep -Ei '^#define.*(yes|no|true|false)$$' lib/config.h&& \ + { echo 'Please use 0 or 1 for macro values' 1>&2; exit 1; } + I lik