diff options
| author | simonmar <unknown> | 2004-03-24 10:50:35 +0000 |
|---|---|---|
| committer | simonmar <unknown> | 2004-03-24 10:50:35 +0000 |
| commit | 30d296f9e4426fdde48553c653e496e4a6cafaeb (patch) | |
| tree | 18bc7ab1a832722bd171448ab5feff217bf3edfe /ghc/compiler/main/DriverFlags.hs | |
| parent | 56ea17cad787925dd1eecd0355aba84f929bb1bc (diff) | |
| download | haskell-30d296f9e4426fdde48553c653e496e4a6cafaeb.tar.gz | |
[project @ 2004-03-24 10:50:34 by simonmar]
-i on its own didn't delete the list of search paths as advertised.
Diffstat (limited to 'ghc/compiler/main/DriverFlags.hs')
| -rw-r--r-- | ghc/compiler/main/DriverFlags.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/main/DriverFlags.hs b/ghc/compiler/main/DriverFlags.hs index a2ef2a1bf5..cc8b772011 100644 --- a/ghc/compiler/main/DriverFlags.hs +++ b/ghc/compiler/main/DriverFlags.hs @@ -259,7 +259,7 @@ static_flags = ) ) ------- Include/Import Paths ---------------------------------------- - , ( "i" , OptPrefix (addToDirList v_Import_paths) ) + , ( "i" , OptPrefix (addToOrDeleteDirList v_Import_paths) ) , ( "I" , Prefix (addToDirList v_Include_paths) ) ------- Libraries --------------------------------------------------- |
