Skip to content

Commit

Permalink
Fix support for applying patches in merge2out
Browse files Browse the repository at this point in the history
Now allows files in subdirectories to be patched.
  • Loading branch information
woodenshoe-wi committed Dec 26, 2016
1 parent 6a8e48e commit 422eca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion merge2out
Expand Up @@ -196,7 +196,7 @@ if [ -d "woof-distro/${TARGETARCH}/${COMPATDISTRO}/${COMPATVERSION}/patches" ];t
`find woof-distro/${TARGETARCH}/${COMPATDISTRO}/${COMPATVERSION}/patches -mindepth 1 -maxdepth 1 -type f -iname '*.patch' | tr '\n' ' '`
do
echo " $PATCHFILE"
patch --unified --forward --silent --input="../woof-CE/$PATCHFILE" --directory=${WOOF_OUT}
patch --unified --forward --silent -p 3 --input="../woof-CE/$PATCHFILE" --directory=${WOOF_OUT}
done
fi

Expand Down

0 comments on commit 422eca8

Please sign in to comment.