Report the ppx runtime deps as external dependencies

This commit is contained in:
Jeremie Dimino 2018-03-30 22:06:00 -04:00 committed by Rudi Grinberg
parent 22b024a977
commit 3c7672c696
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ module Info = struct
}
let user_written_deps t =
List.fold_left t.virtual_deps
List.fold_left (t.virtual_deps @ t.ppx_runtime_deps)
~init:(Deps.to_lib_deps t.requires)
~f:(fun acc s -> Jbuild.Lib_dep.Direct s :: acc)