diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-09-22 14:56:52 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-09-22 14:56:52 -0700 |
| commit | 250664bea41cc5dde66e3054ca0c1b6e0feab9be (patch) | |
| tree | 6eacdd2134c5adee87bbf422c088aed111730342 /lib/std | |
| parent | dacd36ca9b193444e9e2ca3f132fccf3e08fb4f9 (diff) | |
| download | zig-250664bea41cc5dde66e3054ca0c1b6e0feab9be.tar.gz zig-250664bea41cc5dde66e3054ca0c1b6e0feab9be.zip | |
build runner: allow for a bit longer -D options
so they can display in the --help menu without getting squished.
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/special/build_runner.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/special/build_runner.zig b/lib/std/special/build_runner.zig index 3ab74a11a2..3c4916a566 100644 --- a/lib/std/special/build_runner.zig +++ b/lib/std/special/build_runner.zig @@ -185,7 +185,7 @@ fn usage(builder: *Builder, already_ran_build: bool, out_stream: anytype) !void Builder.typeIdName(option.type_id), }); defer allocator.free(name); - try out_stream.print("{s:24} {}\n", .{ name, option.description }); + try out_stream.print("{s:32} {}\n", .{ name, option.description }); } } |
