diff options
author | Joey Hess <joey@kitenet.net> | 2014-03-10 13:53:01 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-03-10 13:53:01 -0400 |
commit | f8752acf4f5eff00d1441fa88c58af12720e6817 (patch) | |
tree | 1c7ffce2209db3c543c4aee9d05933b1ebf4ea09 | |
parent | 51db34af47a2c0f2cd80aa8154bf23b9b04e6830 (diff) |
actually use patches from linux/haskell-patches
-rwxr-xr-x | standalone/linux/install-haskell-packages | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/linux/install-haskell-packages b/standalone/linux/install-haskell-packages index 159cc061c..b47c39aad 100755 --- a/standalone/linux/install-haskell-packages +++ b/standalone/linux/install-haskell-packages @@ -34,7 +34,7 @@ patched () { git config user.email dummy@example.com git add . git commit -m "pre-patched state of $pkg" - for patch in ../../../no-th/haskell-patches/${pkg}_*; do + for patch in ../../haskell-patches/${pkg}_* ../../../no-th/haskell-patches/${pkg}_*; do if [ -e "$patch" ]; then echo trying $patch if ! patch -p1 < $patch; then |