From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47501) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ev9I5-00007C-R9 for guix-patches@gnu.org; Sun, 11 Mar 2018 18:18:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ev9I2-0008Pc-ML for guix-patches@gnu.org; Sun, 11 Mar 2018 18:18:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:47889) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ev9I2-0008PU-I2 for guix-patches@gnu.org; Sun, 11 Mar 2018 18:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ev9I2-0000CX-4N for guix-patches@gnu.org; Sun, 11 Mar 2018 18:18:02 -0400 Subject: [bug#30761] [PATCH staging 1/9] gnu: meson: Don't wrap the meson executable. Resent-Message-ID: From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) References: <20180309180914.22752-1-mbakke@fastmail.com> <20180309181108.22888-1-mbakke@fastmail.com> Date: Sun, 11 Mar 2018 23:17:45 +0100 In-Reply-To: <20180309181108.22888-1-mbakke@fastmail.com> (Marius Bakke's message of "Fri, 9 Mar 2018 19:11:00 +0100") Message-ID: <87vae2tfxy.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Marius Bakke Cc: 30761@debbugs.gnu.org Hello! Marius Bakke skribis: > * gnu/packages/build-tools.scm (meson)[arguments]: Delete WRAP-PHASE. > --- > gnu/packages/build-tools.scm | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm > index 2abb44fdb..1ebccca43 100644 > --- a/gnu/packages/build-tools.scm > +++ b/gnu/packages/build-tools.scm > @@ -81,6 +81,11 @@ makes a few sacrifices to acquire fast full and increm= ental build times.") > (base32 > "06r8limj38mv884s5riiz6lpzw37cvhbf9jd0smzcbi7fwmv3yah"))= )) > (build-system python-build-system) > + (arguments > + `(#:phases (modify-phases %standard-phases > + ;; Meson runs itself through the Python interpreter, so > + ;; we cannot use the shell wrapper. > + (delete 'wrap)))) I=E2=80=99m not sure what this means. The =E2=80=98wrap=E2=80=99 phase is = precisely for things with #!/=E2=80=A6/python, right? What problem does it solve? Thanks, Ludo=E2=80=99.