>From 4c5d42197148c66afab24239033d6f164fc916b1 Mon Sep 17 00:00:00 2001 From: Mario Domenech Goulart Date: Sun, 23 Apr 2017 19:43:40 +0200 Subject: [PATCH 2/6] chicken-install: document -v and add long option for it -v was the only option without a long counterpart, so add -verbose. --- chicken-install.scm | 3 ++- manual/Extensions | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/chicken-install.scm b/chicken-install.scm index d3d7558..8d8c051 100644 --- a/chicken-install.scm +++ b/chicken-install.scm @@ -1017,6 +1017,7 @@ usage: chicken-install [OPTION | EXTENSION[:VERSION]] ... -u -update-db update export database -repository print path used for egg installation -override FILENAME override versions for installed eggs with information from file + -v -verbose be verbose chicken-install recognizes the SUDO, http_proxy and proxy_auth environment variables, if set. @@ -1078,7 +1079,7 @@ EOF ((equal? arg "-dry-run") (set! do-not-build #t) (loop (cdr args))) - ((equal? arg "-v") + ((member arg '("-v" "-verbose")) (set! quiet #f) (loop (cdr args))) ((member arg '("-k" "-keep")) diff --git a/manual/Extensions b/manual/Extensions index 8c074ac..7025822 100644 --- a/manual/Extensions +++ b/manual/Extensions @@ -579,6 +579,7 @@ Available options: ; {{-u -update-db}} : update export database ; {{-repository}} : print path to egg repository ; {{-override FILENAME}} : override versions for installed eggs with information given in {{FILENAME}}, which can be generated by {{-scan}} or by the {{-list}} option of the {{chicken-status}} program +; {{-v -verbose}} : be verbose {{chicken-install}} recognizes the {{SUDO}}, {{http_proxy}} and {{proxy_auth}} environment variables, if set. -- 2.1.4