From 1b4ea80654a71324faba01da0cc04c09fb7e7f77 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Thu, 18 Apr 2024 11:24:42 -0700 Subject: [PATCH] do more robust import MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Carl Ã…stholm --- test/standalone/dependencyFromBuildZig/build.zig | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/standalone/dependencyFromBuildZig/build.zig b/test/standalone/dependencyFromBuildZig/build.zig index 3746529f47..f02140327f 100644 --- a/test/standalone/dependencyFromBuildZig/build.zig +++ b/test/standalone/dependencyFromBuildZig/build.zig @@ -6,11 +6,7 @@ pub fn build(b: *std.Build) void { const dep1 = b.dependency("other", .{}); - const build_runner = @import("root"); - const deps = build_runner.dependencies; - const zon_decls = @typeInfo(deps.packages).Struct.decls; - const pkg = @field(deps.packages, zon_decls[0].name); - const dep2 = b.dependencyFromBuildZig(pkg.build_zig, .{}); + const dep2 = b.dependencyFromBuildZig(@import("other"), .{}); std.debug.assert(dep1.module("add") == dep2.module("add")); }