From 4e21e663ab8b0d84d7ac272c030faad83cf10f5f Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 4 Jan 2020 09:49:21 +0000 Subject: [PATCH] build: Generate complete OCaml dependencies. Because we didn't use -I src on the ocamldep command line, ocamldep didn't generate the complete set of dependencies. --- Goalfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Goalfile.in b/Goalfile.in index 4a80a3f..afe6c1e 100644 --- a/Goalfile.in +++ b/Goalfile.in @@ -81,7 +81,7 @@ goal depend () = rm -f %@ %@-t # Like many existing tools, ocamldep produces make-compatible # output which doesn't work directly in goals. - %OCAMLDEP -all -one-line %< | + %OCAMLDEP -all -one-line -I src %< | sed 's|[./[:alnum:]]\+|"&"|g' | sed 's|" "|", "|g' | sed 's|.*|& ;|' > %@-t -- 1.8.3.1