1
0
forked from GitHub/gf-rgl

Re-specify --gf-lib-path in Make.hs, seems to be needed sometimes

This commit is contained in:
John J. Camilleri
2018-08-09 10:19:48 +02:00
parent 73948e54a6
commit f0566a48dd

View File

@@ -409,7 +409,8 @@ gfcn bi mode summary files = do
run_gfc :: Info -> [String] -> IO () run_gfc :: Info -> [String] -> IO ()
run_gfc bi args = do run_gfc bi args = do
let let
args' = ["--batch", "--quiet"] ++ filter (not . null) args dir = infoBuildDir bi
args' = ["--batch", "--quiet", "--gf-lib-path="++dir] ++ filter (not . null) args
gf = infoGFPath bi gf = infoGFPath bi
execute gf args' execute gf args'