From 1ec16c2dc00cc6fa3a82bc51d39be9fc10681d9c Mon Sep 17 00:00:00 2001 From: Joseph Weston Date: Tue, 24 Jul 2018 19:53:13 +0200 Subject: [PATCH] lib: explicitly specify that the 'Glob' package should be used Without this there are conflicts with the 'filemanip' package, which itself exports a module 'System.FilePath.Glob'. --- hledger-lib/Hledger/Read/JournalReader.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hledger-lib/Hledger/Read/JournalReader.hs b/hledger-lib/Hledger/Read/JournalReader.hs index 335145da9..d72454d4f 100644 --- a/hledger-lib/Hledger/Read/JournalReader.hs +++ b/hledger-lib/Hledger/Read/JournalReader.hs @@ -94,7 +94,7 @@ import Text.Megaparsec.Char import Text.Megaparsec.Custom import Text.Printf import System.FilePath -import System.FilePath.Glob hiding (match) +import "Glob" System.FilePath.Glob hiding (match) import Hledger.Data import Hledger.Read.Common