diff --git a/recipes/nghttp2/recipe.sh b/recipes/nghttp2/recipe.sh
index 1b73275d4531fdec54716c84cec069600e3f66cc..f077220c88ecb857f16176cd8178becc8e91f84c 100644
--- a/recipes/nghttp2/recipe.sh
+++ b/recipes/nghttp2/recipe.sh
@@ -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
 }