aboutsummaryrefslogtreecommitdiff
path: root/src/Package/Module.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-12-16 01:49:57 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-01-01 17:51:20 -0700
commit0be97b5ae3d32ca9cd7fbb68d5972538b48d8c76 (patch)
treed0f1d642243f9cecb35ef481844c959151e9942d /src/Package/Module.zig
parentd71e6273b6acd766eea6c37b8f53ae03cb2bd9f6 (diff)
downloadzig-0be97b5ae3d32ca9cd7fbb68d5972538b48d8c76.tar.gz
zig-0be97b5ae3d32ca9cd7fbb68d5972538b48d8c76.zip
fix population of builtin.zig not making the parent dir
Diffstat (limited to 'src/Package/Module.zig')
-rw-r--r--src/Package/Module.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Package/Module.zig b/src/Package/Module.zig
index 4ce0f0a856..2d54c9296c 100644
--- a/src/Package/Module.zig
+++ b/src/Package/Module.zig
@@ -40,7 +40,7 @@ builtin_file: ?*File,
pub const Deps = std.StringArrayHashMapUnmanaged(*Module);
pub fn isBuiltin(m: Module) bool {
- return m.file != null;
+ return m.builtin_file != null;
}
pub const Tree = struct {