Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-14 Thread Mark H Weaver
l...@gnu.org (Ludovic Courtès) writes: > m...@netris.org skribis: > >> When compiling core-updates, I now see the following warning: >> >> LC_ALL=C \ >> ./pre-inst-env \ >> /home/mhw/.guix-profile/bin/guild c

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-14 Thread Eric Bavier
Ludovic Courtès writes: > m...@netris.org skribis: > >> When compiling core-updates, I now see the following warning: >> >> LC_ALL=C \ >> ./pre-inst-env \ >> /home/mhw/.guix-profile/bin/guild compile -L "."

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-14 Thread Ludovic Courtès
m...@netris.org skribis: > When compiling core-updates, I now see the following warning: > > LC_ALL=C \ > ./pre-inst-env\ > /home/mhw/.guix-profile/bin/guild compile -L "." -L "." \ > -Wformat -Wun

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-13 Thread mhw
Eric Bavier writes: > diff --git a/guix/build/utils.scm b/guix/build/utils.scm > index d169053..7257b30 100644 > --- a/guix/build/utils.scm > +++ b/guix/build/utils.scm > @@ -687,8 +687,7 @@ known as `nuke-refs' in Nixpkgs." > result)) > > (define* (wrap-progr

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-13 Thread Ludovic Courtès
4d3a4c798cc6ee811891b34153e1 Mon Sep 17 00:00:00 2001 > From: Eric Bavier > Date: Sat, 13 Sep 2014 01:05:03 -0500 > Subject: [PATCH] utils: Allow wrap-program to be called multiple times. > > * guix/build/utils.scm (wrap-program): Multiple invocations of > wrap-program for the s

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-12 Thread Eric Bavier
t behavior of the wrapped program. I believe this is more consistent with how wrap-program is used, and doesn't tie the test to the implementation. >From 1b09db0a80d94d3a4c798cc6ee811891b34153e1 Mon Sep 17 00:00:00 2001 From: Eric Bavier Date: Sat, 13 Sep 2014 01:05:03 -0500 Subject:

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-11 Thread Ludovic Courtès
> From 231130db685d8f3264e61d680634eaead9fb Mon Sep 17 00:00:00 2001 > From: Eric Bavier > Date: Tue, 9 Sep 2014 17:47:31 -0500 > Subject: [PATCH] utils: Allow wrap-program to be called multiple times. > > * guix/build/utils.scm (wrap-program): Multiple invocations of > wrap-program for the same file

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-10 Thread Eric Bavier
Ludovic Courtès writes: > Eric Bavier skribis: > >> Currently, if (@ (guix build utils) wrap-program) is called multiple >> times for the same file, the original file ends up being overwritten. >> This happened to me when trying to wrap a python program, which had >> already once been wrapped by

Re: [PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-10 Thread Ludovic Courtès
Eric Bavier skribis: > Currently, if (@ (guix build utils) wrap-program) is called multiple > times for the same file, the original file ends up being overwritten. > This happened to me when trying to wrap a python program, which had > already once been wrapped by python-build-system. The > pyth

[PATCH] utils: Allow wrap-program to be called multiple times.

2014-09-09 Thread Eric Bavier
17:47:31 -0500 Subject: [PATCH] utils: Allow wrap-program to be called multiple times. * guix/build/utils.scm (wrap-program): Multiple invocations of wrap-program for the same file create successive wrappers. --- guix/build/utils.scm | 26 +- 1 file changed, 21 inserti