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