summaryrefslogtreecommitdiff
path: root/guix-package.in
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-01-07 22:54:54 +0100
committerLudovic Courtès <ludo@gnu.org>2013-01-07 22:54:54 +0100
commitcc57f25d96f3007682a4e41a8b5871f05f76e23f (patch)
tree4f292796491f9e3ae24a164f30be9cac132fbd6d /guix-package.in
parentad85c617b5889ed60b154a249d6c4339bc51eac1 (diff)
downloadguix-patches-cc57f25d96f3007682a4e41a8b5871f05f76e23f.tar
guix-patches-cc57f25d96f3007682a4e41a8b5871f05f76e23f.tar.gz
guix-package: Remove `-b' shorthand for `--bootstrap'.
* guix-package.in (%options): Remove #\b as an alternate for "bootstrap". (show-help): Adjust accordingly. * tests/guix-package.sh: Use `--bootstrap' instead of `-b'.
Diffstat (limited to 'guix-package.in')
-rw-r--r--guix-package.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix-package.in b/guix-package.in
index 4dc625778b..628a2b595f 100644
--- a/guix-package.in
+++ b/guix-package.in
@@ -201,7 +201,7 @@ Install, remove, or upgrade PACKAGES in a single transaction.\n"))
(display (_ "
-n, --dry-run show what would be done without actually doing it"))
(display (_ "
- -b, --bootstrap use the bootstrap Guile to build the profile"))
+ --bootstrap use the bootstrap Guile to build the profile"))
(display (_ "
--verbose produce verbose output"))
(newline)
@@ -242,7 +242,7 @@ Install, remove, or upgrade PACKAGES in a single transaction.\n"))
(option '(#\n "dry-run") #f #f
(lambda (opt name arg result)
(alist-cons 'dry-run? #t result)))
- (option '(#\b "bootstrap") #f #f
+ (option '("bootstrap") #f #f
(lambda (opt name arg result)
(alist-cons 'bootstrap? #t result)))
(option '("verbose") #f #f