Merge pull request #24 from ids1024/strip

Correction to gcc recipe
This commit is contained in:
Jeremy Soller 2017-06-12 19:59:08 -06:00 committed by GitHub
commit cbe3379475

View File

@ -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
}