[Haskell-cafe] Uninstall a cabal package?

2009-08-28 Thread Colin Paul Adams
What is the procedure to uninstall a cabal package? -- Colin Adams Preston Lancashire ___ Haskell-Cafe mailing list Haskell-Cafe@haskell.org http://www.haskell.org/mailman/listinfo/haskell-cafe

Re: [Haskell-cafe] Uninstall a cabal package?

2009-08-28 Thread Peter Robinson
As far as I know the current stable release of Cabal doesn't keep track of installed packages, so you can only # ghc-pkg unregister pkg-id and then manually delete the files. Peter 2009/8/28 Colin Paul Adams co...@colina.demon.co.uk: What is the procedure to uninstall a cabal package? --

Re: [Haskell-cafe] Uninstall a cabal package?

2009-08-28 Thread Colin Paul Adams
Peter == Peter Robinson thaldy...@gmail.com writes: Peter As far as I know the current stable release of Cabal Peter doesn't keep track of installed packages, so you can only # Peter ghc-pkg unregister pkg-id and then manually delete the Peter files. Thanks. That works. --