From 5b01f056db2f1a8fd175262730d83edccf48ad03 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott <ian@iandouglasscott.com> Date: Mon, 12 Jun 2017 18:33:49 -0700 Subject: [PATCH] Correction to gcc recipe --- recipes/gcc/recipe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/gcc/recipe.sh b/recipes/gcc/recipe.sh index fd82c1a28..ad0f38fdc 100644 --- a/recipes/gcc/recipe.sh +++ b/recipes/gcc/recipe.sh @@ -52,6 +52,6 @@ function recipe_clean { function recipe_stage { dest="$(realpath $1)" make DESTDIR="$dest" install-gcc install-target-libgcc - find "$dest/{bin,libexec}" -exec x86_64-elf-redox-strip {} ';' 2> /dev/null + find "$dest"/{bin,libexec} -exec x86_64-elf-redox-strip {} ';' 2> /dev/null skip=1 } -- GitLab