diff options
| author | krasimir <krasimir@chalmers.se> | 2008-04-22 11:39:46 +0000 |
|---|---|---|
| committer | krasimir <krasimir@chalmers.se> | 2008-04-22 11:39:46 +0000 |
| commit | fc111c1a7910ab4a2a1bf40c0473bbaacadedd61 (patch) | |
| tree | 6f9c2bed83320272ebe41f314fd930f2a13ce3d9 /src/GF/Devel/Options.hs | |
| parent | 7a6adbf35932efeed283f762b300b6f5a3b21d8a (diff) | |
use the standard System.FilePath module instead of our own broken file path manipulation functions
Diffstat (limited to 'src/GF/Devel/Options.hs')
| -rw-r--r-- | src/GF/Devel/Options.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GF/Devel/Options.hs b/src/GF/Devel/Options.hs index 14b598225..9a4087096 100644 --- a/src/GF/Devel/Options.hs +++ b/src/GF/Devel/Options.hs @@ -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 } |
