Do not strip nghttp2 libs

This commit is contained in:
Jeremy Soller 2019-04-09 20:11:22 -06:00
parent 37859d551d
commit 9256f76ce6
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -15,7 +15,7 @@ function recipe_build {
./configure \
--build="${BUILD}" \
--host="${HOST}" \
--prefix="" \
--prefix=/ \
--enable-lib-only
make -j"$(nproc)"
skip=1
@ -34,7 +34,6 @@ function recipe_clean {
function recipe_stage {
dest="$(realpath $1)"
make install DESTDIR="$dest"
find "$dest/lib" -exec ${HOST}-strip {} ';' 2> /dev/null
rm -f "$dest/lib/"*.la
skip=1
}