aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarin Ivanov <[email protected]>2024-05-01 18:10:45 +0300
committerMarin Ivanov <[email protected]>2024-05-01 18:12:57 +0300
commit8a0560edda7ba516625d310cc1b6b995fd5ad672 (patch)
treeff46fcfc9943c660023c4308ce97c0a89afd7be2
parent193d27d6ac12cd44d8d476008445bbff8a8542f7 (diff)
build: fix step dependency
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index 31172a3..be894d5 100644
--- a/build.zig
+++ b/build.zig
@@ -43,7 +43,7 @@ pub fn build(b: *Build) !void {
b.installArtifact(kernel);
const kernel_step = b.step("kernel", "Build the kernel");
- //kernel_step.dependOn(&kernel.install_step.?.step);
+ kernel_step.dependOn(&kernel.step);
const iso_dir = b.fmt("{?s}/iso_root", .{b.cache_root.path});
// const kernel_path = b.install_path ++ "/" ++ kernel.out_filename;