We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7576f34 commit b862d64Copy full SHA for b862d64
src/driver/voodoo.ml
@@ -96,7 +96,13 @@ let process_package pkg =
96
Fpath.Set.add meta_dir acc
97
| Some x ->
98
let dir = Fpath.(meta_dir // v x) in
99
- Fpath.Set.add dir acc)) Fpath.Set.empty libs
+ (* NB. topkg installs a META file that points to a ../topkg-care directory
100
+ that is installed by the topkg-care package. We filter that out here,
101
+ though I've not thought of a good way to sort out the `topkg-care` package *)
102
+ match Bos.OS.Dir.exists dir with
103
+ | Ok true ->
104
+ Fpath.Set.add dir acc
105
+ | _ -> acc)) Fpath.Set.empty libs
106
in
107
let libname_of_archive =
108
List.fold_left (fun acc x ->
0 commit comments