guix-install.sh: Correctly treat empty or unset $XDG_DATA_DIRS
authorAlexander Krotov <krotov@iitp.ru>
Tue, 21 Jan 2020 23:01:33 +0000 (02:01 +0300)
committerLudovic Courtès <ludo@gnu.org>
Sun, 26 Jan 2020 22:21:39 +0000 (23:21 +0100)
commit7ff169d04f52b15393b33a97959e2cd6a5957e26
tree3706588b53ad16cc99622fda27d330b0a4b96e38
parent29ba58c0ef3c1e4a6154a133203c9c09d138fd32
guix-install.sh: Correctly treat empty or unset $XDG_DATA_DIRS

If $XDG_DATA_DIRS is unset, default value of "/usr/local/share:/usr/share"
is used according to XDG Base Directory Specification. However,
/etc/profile.d/guix.sh treats this value as empty list when appending its
own directory, so after installing Guix on the system, launchers such
as Rofi stop searching for .desktop files in /usr/share/applications/
and can't launch applications other than those installed with Guix.

This patch fixes the bug in generated /etc/profile.d/guix.sh

* etc/guix-install.sh (sys_create_init_profile): Use default value of
  /usr/local/share:/usr/share/ before appending if $XDG_DATA_DIRS is not
  set.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
etc/guix-install.sh