From 85971d29c4c3778b0dd216fba807394efcd143cf Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Sat, 24 Feb 2024 01:20:46 +0100 Subject: [PATCH] ocaml-findlib: don't strip bytecode. --- srcpkgs/ocaml-findlib/template | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/srcpkgs/ocaml-findlib/template b/srcpkgs/ocaml-findlib/template index b1bf955df66..e57252cac77 100644 --- a/srcpkgs/ocaml-findlib/template +++ b/srcpkgs/ocaml-findlib/template @@ -16,9 +16,12 @@ nopie=yes disable_parallel_build=yes case "$XBPS_TARGET_MACHINE" in - # native code platforms - x86_64*|aarch64*|riscv64*) make_build_args="all opt";; - *) make_build_target="all";; +# native code platforms +x86_64*|aarch64*|riscv64*) + make_build_args="all opt";; +*) + nostrip=yes # breaks bytecode! + make_build_target="all";; esac