[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: XML path not found
From: |
Ludovic Courtès |
Subject: |
Re: XML path not found |
Date: |
Tue, 20 Jan 2015 22:32:58 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
Andreas Enge <address@hidden> skribis:
> when running "guix package -i ...", I obtain the following message:
>
> find-files: /home/privat/.guix-profile/xml/: No such file or directory
Here’s 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-coreutils-8.23', from
'http://hydra.gnu.org/nar/l0jj1fha44653zl97kmyfcskfabim93n-coreutils-8.23'
downloading `/gnu/store/l0jj1fha44653zl97kmyfcskfabim93n-coreutils-8.23' (13.9
MiB installed)...
http://hydra.gnu.org/nar/l0jj1fha44653zl97kmyfcskfabim93n-coreutils-8.23
3632.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’s 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’ll have to fix it
in ‘search-path-as-list’ eventually.
Thanks,
Ludo’.