From 8c30acfc5bc1048a8e4d46cf386acc9469b09cd6 Mon Sep 17 00:00:00 2001 From: shibedrill Date: Mon, 7 Jul 2025 11:06:49 -0400 Subject: [PATCH] Remove "prepare" from build dependencies for offline dev --- Makefile.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.toml b/Makefile.toml index fb79f54..967c2b2 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -72,7 +72,7 @@ args = ["-rf", "build/initramfs", "build/initramfs.tar.lzma"] [tasks.lib] condition = { files_modified = { input = ["src/lib/**/*.rs"], output = ["${ARTIFACTDIR}/libgila.rlib"] }, fail_message = "(inputs unchanged)" } -dependencies = ["prepare"] +dependencies = [] command = "cargo" args = ["build", "--profile", "${PROFILE}", "--lib"] @@ -170,4 +170,4 @@ command = "gdb" args = ["${ARTIFACTDIR}/kernel", "--eval-command=target remote localhost:1234"] [tasks.debug] -run_task = { name = ["debug-run", "debug-view"], fork = true, parallel = true } \ No newline at end of file +run_task = { name = ["debug-run", "debug-view"], fork = true, parallel = true }