mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-22 09:32:53 -06:00
use the standard System.FilePath module instead of our own broken file path manipulation functions
This commit is contained in:
@@ -178,7 +178,7 @@ moduleOptDescr =
|
||||
]
|
||||
where
|
||||
addLibDir x o = return $ o { optLibraryPath = x:optLibraryPath o }
|
||||
setLibPath x o = return $ o { optLibraryPath = splitSearchPath x }
|
||||
setLibPath x o = return $ o { optLibraryPath = splitInModuleSearchPath x }
|
||||
preproc x o = return $ o { optPreprocessors = optPreprocessors o ++ [x] }
|
||||
optimize x b o = return $ o { optOptimizations = (if b then (x:) else delete x) (optOptimizations o) }
|
||||
parser x o = return $ o { optBuildParser = x }
|
||||
|
||||
Reference in New Issue
Block a user