16fa980689
Also, parameterize the abdroid abi version
6 lines
345 B
Bash
Executable file
6 lines
345 B
Bash
Executable file
#!/bin/sh
|
|
# Removes all currently installed cross-compiled haskell packages
|
|
# except those part of ghc.
|
|
# Useful if the build failed.
|
|
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
|