guix_mirror_bot pushed a commit to branch version-1.5.0
in repository guix.

commit 79cf0fb7a33882b614d766e90231fdcd32d15c7a
Author: Simon Josefsson <[email protected]>
AuthorDate: Sat Nov 29 17:09:14 2025 +0100

    guix-install.sh: Make /etc/profile.d/zzz-guix.sh usable in set -u shells
    
    * etc/guix-install.sh: Replace $INFOPATH, $MANPATH with ${V:-} variant.
    
    Closes: guix/guix#4534
    Change-Id: I82da28d1347b1f37862b903f1721d9bdbb78acd2
    Signed-off-by: Rutherther <[email protected]>
    Merges: #4553
---
 etc/guix-install.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/etc/guix-install.sh b/etc/guix-install.sh
index c153cd1c28..1b2b978c34 100755
--- a/etc/guix-install.sh
+++ b/etc/guix-install.sh
@@ -793,8 +793,8 @@ export PATH="$GUIX_PROFILE/bin${PATH:+:}$PATH"
 # info and man readers.  When INFOPATH is unset, add a trailing colon so Emacs
 # searches 'Info-default-directory-list'.  When MANPATH is unset, add a
 # trailing colon so the system default search path is used.
-export INFOPATH="$GUIX_PROFILE/share/info:$INFOPATH"
-export MANPATH="$GUIX_PROFILE/share/man:$MANPATH"
+export INFOPATH="$GUIX_PROFILE/share/info:${INFOPATH:-}"
+export MANPATH="$GUIX_PROFILE/share/man:${MANPATH:-}"
 
 # User's default profile, if it exists
 GUIX_PROFILE="$HOME/.guix-profile"

Reply via email to