Correction to gcc recipe

This commit is contained in:
Ian Douglas Scott 2017-06-12 18:33:49 -07:00
parent 4873d64157
commit 5b01f056db
No known key found for this signature in database
GPG Key ID: 4924E10E199B5959

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
}