diff options
author | Joey Hess <joey@kitenet.net> | 2014-10-15 11:19:14 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-10-15 11:19:14 -0400 |
commit | 47061d00fdb2ebc51b9ca9cc99f006eb32212233 (patch) | |
tree | 812bb61d7c30480f69f91d156195860a769d60be /standalone | |
parent | eb98df089f68e8525f854c253ac9131468656464 (diff) |
fix build failure with empty parameter
Diffstat (limited to 'standalone')
-rwxr-xr-x | standalone/android/install-haskell-packages | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/standalone/android/install-haskell-packages b/standalone/android/install-haskell-packages index 1ee491623..c4fd7d4c8 100755 --- a/standalone/android/install-haskell-packages +++ b/standalone/android/install-haskell-packages @@ -15,8 +15,6 @@ if [ ! -d haskell-patches ]; then cd standalone/android fi -cabalopts="$@" - setupcabal () { cabal update @@ -54,7 +52,7 @@ patched () { done ln -sf ../../cabal.config - cabal install "$@" "$cabalopts" + cabal install "$@" rm -f cabal.config rm -rf $pkg* |