2013-09-22 17:30:04 -04:00
|
|
|
#!/bin/sh
|
|
|
|
# Removes all currently installed cross-compiled haskell packages
|
|
|
|
# except those part of ghc.
|
|
|
|
# Useful if the build failed.
|
2013-11-11 00:03:24 -04:00
|
|
|
rm -f $(grep -l $HOME/.ghc/android-14/arm-linux-androideabi-4.8/.cabal/lib/ $HOME/.ghc/android-14/arm-linux-androideabi-4.8/lib/*-ghc-*/package.conf.d/*.conf)
|
|
|
|
$HOME/.ghc/android-14/arm-linux-androideabi-4.8/arm-linux-androideabi/bin/ghc-pkg recache
|