From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: XML path not found Date: Tue, 20 Jan 2015 22:32:58 +0100 Message-ID: <87wq4hyw6t.fsf@gnu.org> References: <20150119210457.GA7152@debian> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33751) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDgQ5-0000Jb-Jm for guix-devel@gnu.org; Tue, 20 Jan 2015 16:33:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YDgQ1-0005Yg-JJ for guix-devel@gnu.org; Tue, 20 Jan 2015 16:33:05 -0500 Received: from hera.aquilenet.fr ([2a01:474::1]:48203) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDgQ1-0005WF-CA for guix-devel@gnu.org; Tue, 20 Jan 2015 16:33:01 -0500 In-Reply-To: <20150119210457.GA7152@debian> (Andreas Enge's message of "Mon, 19 Jan 2015 22:04:57 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Andreas Enge Cc: guix-devel@gnu.org Andreas Enge skribis: > when running "guix package -i ...", I obtain the following message: > > find-files: /home/privat/.guix-profile/xml/: No such file or directory Here=E2=80=99s a way to reproduce it: --8<---------------cut here---------------start------------->8--- $ guix package -p foo -i libxml2 coreutils The following packages will be installed: coreutils 8.23 /gnu/store/l0jj1fha44653zl97kmyfcskfabim93n-coreutils-8.23 libxml2 2.9.0 /gnu/store/dng0rvcw4264k0r9fp7618bxsh20bi9v-libxml2-2.9.0 The following derivations will be built: /gnu/store/0j5fmnybblpivdm0zn9aipg5m6lgig7d-profile.drv /gnu/store/l8jh34wf5nw8hh1li02qmw8iwx20nh8z-info-dir.drv The following file will be downloaded: /gnu/store/l0jj1fha44653zl97kmyfcskfabim93n-coreutils-8.23 found valid signature for '/gnu/store/l0jj1fha44653zl97kmyfcskfabim93n-core= utils-8.23', from 'http://hydra.gnu.org/nar/l0jj1fha44653zl97kmyfcskfabim93= n-coreutils-8.23' downloading `/gnu/store/l0jj1fha44653zl97kmyfcskfabim93n-coreutils-8.23' (1= 3.9 MiB installed)... http://hydra.gnu.org/nar/l0jj1fha44653zl97kmyfcskfabim93n-coreutils-8.23 36= 32.0 KiB transferred 2 packages in profile find-files: foo/xml/: No such file or directory --8<---------------cut here---------------end--------------->8--- This is because the search path of libxml2 specifies a file pattern for files in the xml/ sub-directory. In the above case, there=E2=80=99s no such sub-directory, so we get that annoying warning. Commit 1a09650 works around that. However, I think we also get it in build logs, so we=E2=80=99ll have to fix= it in =E2=80=98search-path-as-list=E2=80=99 eventually. Thanks, Ludo=E2=80=99.