~ chicken-core (chicken-5) c32b044811a899dc649ccae8eb44d47311fce81c
commit c32b044811a899dc649ccae8eb44d47311fce81c Author: Kooda <kooda@upyum.com> AuthorDate: Sun Aug 12 14:29:24 2018 +0200 Commit: Kooda <kooda@upyum.com> CommitDate: Sun Aug 12 14:29:24 2018 +0200 Make `chicken-install -u` do what it’s supposed to do diff --git a/chicken-install.scm b/chicken-install.scm index 14e07262..a282f791 100644 --- a/chicken-install.scm +++ b/chicken-install.scm @@ -1104,7 +1104,7 @@ EOF ((equal? arg "-target") (set! host-extension #f) (loop (cdr args))) - ((equal? arg "-update-db") + ((member arg '("-u" "-update-db")) (set! update-module-db #t) (loop (cdr args))) ((equal? arg "-no-install-deps")Trap