Hi,
On Thu, 14 Jan 2021 at 08:00, Garjola Dindi <[email protected]> wrote:
> I recently installed the Guix package manager on Debian and found
> symlinks on /usr/local/share/info/. One of them looks like this
>
> ls -l /usr/local/share/info/dir
> lrwxrwxrwx 1 root staff 60 Jan 10 12:04 /usr/local/share/info/dir ->
> /var/guix/profiles/per-user/root/current-guix/share/info/dir
>
> This breaks the info directory. Is this a bug? I didn't do anything
> special during installation.
The culprit seems these lines in etc/guix-install.sh:
--8<---------------cut here---------------start------------->8---
for i in "${var_guix}"/share/info/*; do
ln -sf "$i" "$info_path"
done
--8<---------------cut here---------------end--------------->8---
You are expecting symlinks to all except this ’dir’ file, right?
All the best,
simon