From 9cd58123c450ead3d8a42fefe9fe6b21448852f4 Mon Sep 17 00:00:00 2001 From: AnErrupTion Date: Sat, 27 Jul 2024 15:02:01 +0200 Subject: [PATCH] Fix silly mistake Signed-off-by: AnErrupTion --- build.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/build.zig b/build.zig index 66542ea..8f9b8c3 100644 --- a/build.zig +++ b/build.zig @@ -106,7 +106,6 @@ pub fn build(b: *std.Build) !void { const installrunit_step = b.step("installrunit", "Install the Ly runit service"); installrunit_step.makeFn = ServiceInstaller(.Runit).make; installrunit_step.dependOn(installexe_step); - installopenrc_step.dependOn(installexe_step); const installs6_step = b.step("installs6", "Install the Ly s6 service"); installs6_step.makeFn = ServiceInstaller(.S6).make;