From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: daemon: No rule to make target `nix/libstore/schema.sql' Date: Fri, 14 Dec 2012 11:50:00 +0100 Message-ID: <201212141150.00486.andreas@enge.fr> References: <201212140005.19163.andreas@enge.fr> <87pq2dez9m.fsf@gnu.org> Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_YRwyQky45c27Ov2" Return-path: Received: from eggs.gnu.org ([208.118.235.92]:39274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TjSqd-0000Cc-Tr for bug-guix@gnu.org; Fri, 14 Dec 2012 05:50:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TjSqW-0004ZA-Kj for bug-guix@gnu.org; Fri, 14 Dec 2012 05:50:30 -0500 In-Reply-To: <87pq2dez9m.fsf@gnu.org> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: Ludovic =?utf-8?q?Court=C3=A8s?= Cc: bug-guix@gnu.org --Boundary-00=_YRwyQky45c27Ov2 Content-Type: multipart/alternative; boundary="Boundary-01=_YRwyQ6KhLGtNRWC" Content-Transfer-Encoding: 7bit --Boundary-01=_YRwyQ6KhLGtNRWC Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Am Freitag, 14. Dezember 2012 schrieb Ludovic Court=C3=A8s: > Hmm, can you run =E2=80=98git submodule init && git submodule update=E2= =80=99 from the > top level, and check whether nix-upstream/{COPYING,AUTHORS} appear? The files are there, but the brace expansion in the script is a bashism that does not work under debain /bin/sh (which is dash). Trivial patch attached. Andreas --Boundary-01=_YRwyQ6KhLGtNRWC Content-Type: text/html; charset="utf-8" Content-Transfer-Encoding: quoted-printable

Am Freitag,= 14. Dezember 2012 schrieb Ludovic Court=C3=A8s:

> Hmm, c= an you run =E2=80=98git submodule init && git submodule update=E2= =80=99 from the

> top le= vel, and check whether nix-upstream/{COPYING,AUTHORS} appear?

&nb= sp;

The files a= re there, but the brace expansion in the script is a bashism

that does n= ot work under debain /bin/sh (which is dash).

Trivial pat= ch attached.

&nb= sp;

Andreas

&nb= sp;

--Boundary-01=_YRwyQ6KhLGtNRWC-- --Boundary-00=_YRwyQky45c27Ov2 Content-Type: text/x-patch; charset="UTF-8"; name="0003-nix-sync-with-upstream-fix-bashism.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="0003-nix-sync-with-upstream-fix-bashism.patch" =46rom 84ca150413d500760a85d5071a77c4fb025b1312 Mon Sep 17 00:00:00 2001 =46rom: Andreas Enge Date: Fri, 14 Dec 2012 11:47:09 +0100 Subject: [PATCH 3/3] * nix/sync-with-upstream: fix bashism =2D-- nix/sync-with-upstream | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/sync-with-upstream b/nix/sync-with-upstream index 69bd1fb..1f11fd7 100755 =2D-- a/nix/sync-with-upstream +++ b/nix/sync-with-upstream @@ -61,7 +61,8 @@ do fi done =20 =2Dcp -v "$top_srcdir/nix-upstream/"{COPYING,AUTHORS} "$top_srcdir/nix" +cp -v "$top_srcdir/nix-upstream/COPYING" "$top_srcdir/nix" +cp -v "$top_srcdir/nix-upstream/AUTHORS" "$top_srcdir/nix" =20 # Substitutions. sed -i "$top_srcdir/nix/libstore/gc.cc" \ =2D-=20 1.7.10.4 --Boundary-00=_YRwyQky45c27Ov2--