Skip to content
Snippets Groups Projects
Verified Commit 9256f76c authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Do not strip nghttp2 libs

parent 37859d55
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ function recipe_build { ...@@ -15,7 +15,7 @@ function recipe_build {
./configure \ ./configure \
--build="${BUILD}" \ --build="${BUILD}" \
--host="${HOST}" \ --host="${HOST}" \
--prefix="" \ --prefix=/ \
--enable-lib-only --enable-lib-only
make -j"$(nproc)" make -j"$(nproc)"
skip=1 skip=1
...@@ -34,7 +34,6 @@ function recipe_clean { ...@@ -34,7 +34,6 @@ function recipe_clean {
function recipe_stage { function recipe_stage {
dest="$(realpath $1)" dest="$(realpath $1)"
make install DESTDIR="$dest" make install DESTDIR="$dest"
find "$dest/lib" -exec ${HOST}-strip {} ';' 2> /dev/null
rm -f "$dest/lib/"*.la rm -f "$dest/lib/"*.la
skip=1 skip=1
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment