commit 67cfd5f65c40020e205d23bad77a1962c43bacd6
parent 92a3fdfd38ff06b7bbd92191b5bbbba02d5f4900
Author: Drew DeVault <sir@cmpwn.com>
Date: Fri, 19 Mar 2021 14:08:14 -0400
cmd/hare: fix some minor flags issues
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmd/hare/subcmds.ha b/cmd/hare/subcmds.ha
@@ -28,8 +28,8 @@ fn build(args: []str) void = {
('c', "build object instead of executable"),
('v', "print executed commands"),
('D', "ident:type=value", "define a constant"),
- ('l', "name", "link with a system library"),
('j', "jobs", "set parallelism for build"),
+ ('l', "name", "link with a system library"),
('o', "path", "set output file name"),
('t', "arch", "set target architecture"),
('T', "tags...", "set build tags"),
@@ -117,8 +117,8 @@ fn cache(args: []str) void = {
fn deps(args: []str) void = {
let help: []getopt::help = [
"prints dependency information for Hare programs",
+ ('d', "print dot syntax for use with graphviz"),
('M', "print rules for POSIX make"),
- ('m', "print module names only"),
('T', "tags...", "set build tags"),
('X', "tags...", "unset build tags"),
"path",