diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-11-20 18:41:47 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-11-20 18:43:10 +0100 |
commit | bd7e136d295f0d6c1aa5d107356e28c259a54cb9 (patch) | |
tree | 38aeb48fb5991c2e90f9d7c35fa835acd527c5d2 /guix | |
parent | 4b1ba80cef69b951a72e1dfd04bb3ddc5f4e571c (diff) |
Add semicolon in commands that set GUIX_PROFILE.
Fixes <https://bugs.gnu.org/28223>.
Reported by Rosebud Uplink <Uplink.Introversion@outlook.com>.
* doc/guix.texi (Binary Installation): Add missing semicolon after
'GUIX_PROFILE=' line.
(Invoking guix package): Likewise.
* gnu/system.scm (operating-system-etc-service)[profile]: Likewise.
* guix/build/profiles.scm (build-etc/profile): Likewise.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/build/profiles.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/build/profiles.scm b/guix/build/profiles.scm index 5c96fe9067..b4160fba1b 100644 --- a/guix/build/profiles.scm +++ b/guix/build/profiles.scm @@ -82,7 +82,7 @@ definitions for all the SEARCH-PATHS." # for this profile. You may want to define the 'GUIX_PROFILE' environment # variable to point to the \"visible\" name of the profile, like this: # -# GUIX_PROFILE=/path/to/profile \\ +# GUIX_PROFILE=/path/to/profile ; \\ # source /path/to/profile/etc/profile # # When GUIX_PROFILE is undefined, the various environment variables refer |