system: Use "." instead of "source" in /etc/profile.

* gnu/system.scm (etc-directory)[profile]: Use "." instead of "source",
  the latter being Bash-specific.
This commit is contained in:
Ludovic Courtès 2015-05-07 09:45:45 +02:00
parent 507c71d629
commit 669786da91
1 changed files with 3 additions and 3 deletions

View File

@ -479,7 +479,7 @@ unset PATH
# Load the system profile's settings.
GUIX_PROFILE=/run/current-system/profile \\
source /run/current-system/profile/etc/profile
. /run/current-system/profile/etc/profile
# Prepend setuid programs.
export PATH=/run/setuid-programs:$PATH
@ -488,7 +488,7 @@ if [ -f \"$HOME/.guix-profile/etc/profile\" ]
then
# Load the user profile's settings.
GUIX_PROFILE=\"$HOME/.guix-profile\" \\
source \"$HOME/.guix-profile/etc/profile\"
. \"$HOME/.guix-profile/etc/profile\"
else
# At least define this one so that basic things just work
# when the user installs their first package.
@ -508,7 +508,7 @@ export ASPELL_CONF=\"dict-dir $HOME/.guix-profile/lib/aspell\"
if [ -n \"$BASH_VERSION\" -a -f /etc/bashrc ]
then
# Load Bash-specific initialization code.
source /etc/bashrc
. /etc/bashrc
fi
"))