From 32647437ad334b008a32432f7883533fe69df997 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Tue, 7 Aug 2018 10:11:23 +0200 Subject: [PATCH] Remove unneccessary --gf-lib-path, which could give misleading errors --- Make.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.hs b/Make.hs index 686067d16..05872407f 100644 --- a/Make.hs +++ b/Make.hs @@ -393,7 +393,7 @@ gfcn bi mode summary files = do run_gfc :: Info -> [String] -> IO () run_gfc bi args = do let - args' = ["--batch","--gf-lib-path="++sourceDir] ++ filter (not . null) args + args' = ["--batch"] ++ filter (not . null) args gf = infoGFPath bi execute gf args'