diff options
author | nebuli <nebu@kipple> | 2014-12-05 01:28:12 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-12-06 16:03:49 +0100 |
commit | 847391fe6229bc9b989939470b4a84bd82c75088 (patch) | |
tree | d88710603c81a30cf80fc8aa48d872bbf254822b /doc | |
parent | 6496de9bc2deb30306922ace8498afa237dee1b1 (diff) | |
download | guix-847391fe6229bc9b989939470b4a84bd82c75088.tar guix-847391fe6229bc9b989939470b4a84bd82c75088.tar.gz |
guix: scripts: Parse $GUIX_BUILD_OPTIONS separately.
Appending to "raw" args broke optional parameters in 'guix package -I'
and 'guix package -A', and possibly other places. Therefore, switch to
parsing each set of options on its own and append resulting alists
together afterwards.
* guix/scripts/archive.scm (parse-options-from): Rename from
(parse-options) and add explicit argument. New form of (parse-options)
using its old algorithm via -from function.
* guix/scripts/build.scm: Ditto.
* guix/scripts/environment.scm: Ditto.
* guix/scripts/package.scm: Ditto.
* guix/scripts/system.scm: Ditto.
* tests/guix-package.sh: Add test.
* doc/guix.texi (Invoking guix build): Make it clear that the options
are parsed independently.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index e804d79ed0..1d4a012b16 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -2802,7 +2802,8 @@ below: $ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar" @end example -These options are appended to the ones passed on the command line. +These options are parsed independently, and the result is appended to +the parsed command-line options. @end defvr |