diff options
-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 |