actually use patches from linux/haskell-patches

This commit is contained in:
Joey Hess 2014-03-10 13:53:01 -04:00
parent f7cd43cfd0
commit 6f9f9739eb
Failed to extract signature

View file

@ -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