this repo has no description

jtw: fix jsoo_runtime parsing to handle newline-separated stubs

The core META file defines jsoo_runtime with newline-separated filenames,
but the parser only split on spaces. This left trailing newlines embedded
in file paths, causing js_of_ocaml to fail when compiling core.cma.js.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+3 -1
+3 -1
bin/ocamlfind.ml
··· 74 74 Fl_metascanner.lookup "jsoo_runtime" [] 75 75 package.Fl_package_base.package_defs 76 76 in 77 - (* Runtime may be space-separated list of files *) 77 + (* Runtime may be space or newline separated list of files *) 78 78 String.split_on_char ' ' runtime 79 + |> List.concat_map (String.split_on_char '\n') 80 + |> List.map String.trim 79 81 |> List.filter (fun x -> String.length x > 0) 80 82 with _ -> []