unpatch-source   [plain text]


#!/bin/sh -e

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

exit 0