diff --git a/recipes/relibc/recipe.sh b/recipes/relibc/recipe.sh index a77135ce4b12e21eedd0204c8975dbdfed7407ba..fe790d51e62eff011664a97ff5f23e64c993d8cd 100644 --- a/recipes/relibc/recipe.sh +++ b/recipes/relibc/recipe.sh @@ -2,11 +2,14 @@ GIT=https://gitlab.redox-os.org/redox-os/relibc.git function recipe_build { make + make -C tests skip=1 } function recipe_stage { dest="$(realpath $1)" make DESTDIR="$dest" install + mkdir -pv "$dest/share/relibc" + cp -rv "tests" "$dest/share/relibc/tests" skip=1 }