From 090cb71aeaf9885382e2ce359149cef562cea71b Mon Sep 17 00:00:00 2001 From: bjorn3 <17426603+bjorn3@users.noreply.github.com> Date: Sat, 28 Jun 2025 19:56:57 +0200 Subject: [PATCH] Remove reference to dnsd from the base recipe It no longer exists. --- recipes/core/base/recipe.toml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/recipes/core/base/recipe.toml b/recipes/core/base/recipe.toml index 206e1a8d..169fc2a8 100644 --- a/recipes/core/base/recipe.toml +++ b/recipes/core/base/recipe.toml @@ -17,9 +17,7 @@ done "${COOKBOOK_CARGO}" build \ --manifest-path "${COOKBOOK_SOURCE}/netstack/Cargo.toml" \ ${build_flags} -for bin in smolnetd dnsd; do - cp -v \ - "target/${TARGET}/${build_type}/${bin}" \ - "${COOKBOOK_STAGE}/usr/bin/${bin}" -done +cp -v \ + "target/${TARGET}/${build_type}/smolnetd" \ + "${COOKBOOK_STAGE}/usr/bin/smolnetd" """