summaryrefslogtreecommitdiff
path: root/packaging/Debian/debian/scripts/patch-source
blob: a95a0020488b3ce4d545b87c4caff19b24fb2ce6 (plain)
1
2
3
4
5
6
7
#!/bin/sh -e

for patch in debian/patches/*.patch; do
	patch -p1 < $patch
done

exit 0