aboutsummaryrefslogtreecommitdiff
path: root/lib/std/build.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-12-16 16:36:42 -0500
committerAndrew Kelley <andrew@ziglang.org>2019-12-16 16:36:42 -0500
commitb1abe4a1720773e5c33387e6608b192530239552 (patch)
tree964f3ff18800ff2530e9e96d98de3deb73a252bf /lib/std/build.zig
parent744133acb1358a9c3ed55001571c7cc7778563bd (diff)
downloadzig-b1abe4a1720773e5c33387e6608b192530239552.tar.gz
zig-b1abe4a1720773e5c33387e6608b192530239552.zip
Revert "added -- to pass args to zig build commands"
This reverts commit d4e56ae6ae15ed1b062b0d775893abb5579fc66d. This broke the build
Diffstat (limited to 'lib/std/build.zig')
-rw-r--r--lib/std/build.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/std/build.zig b/lib/std/build.zig
index b2cb58a1f1..f7e4756e90 100644
--- a/lib/std/build.zig
+++ b/lib/std/build.zig
@@ -54,7 +54,6 @@ pub const Builder = struct {
is_release: bool,
override_lib_dir: ?[]const u8,
vcpkg_root: VcpkgRoot,
- args: ?[][]const u8,
pkg_config_pkg_list: ?(PkgConfigError![]const PkgConfigPkg) = null,
const PkgConfigError = error{
@@ -161,7 +160,6 @@ pub const Builder = struct {
.override_lib_dir = null,
.install_path = undefined,
.vcpkg_root = VcpkgRoot{ .Unattempted = {} },
- .args = null,
};
try self.top_level_steps.append(&self.install_tls);
try self.top_level_steps.append(&self.uninstall_tls);