From adf95141be88a22159ea40626c40e9aa7bcfe2c7 Mon Sep 17 00:00:00 2001 From: auronandace Date: Wed, 17 Sep 2025 19:30:24 +0100 Subject: [PATCH] add gnu-grep as dependency to os-test --- recipes/tests/os-test/recipe.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes/tests/os-test/recipe.toml b/recipes/tests/os-test/recipe.toml index 1022d4e4..9b0d0235 100644 --- a/recipes/tests/os-test/recipe.toml +++ b/recipes/tests/os-test/recipe.toml @@ -1,3 +1,4 @@ +# TODO remove gnu-grep when extrautils grep supports grep -E [source] git = "https://gitlab.com/sortix/os-test" @@ -10,9 +11,10 @@ cp -rv "${COOKBOOK_SOURCE}"/* "${COOKBOOK_STAGE}/share/os-test" [package] dependencies = [ - "gnu-binutils", - "gnu-make", "gcc13", + "gnu-binutils", + "gnu-grep", + "gnu-make", "libarchive", "sed", ]