#! /bin/bash -e

# Run this script to de-Quilt the source, deleting
# within the source the files and directories Quilt
# makes, keeps and uses.  Note that the script does not
# integrate the patches it removes; it just removes
# them.  Therefore, if you wish to integrate any of the
# patches, then you should probably do that before
# invoking the script.

D="$( dirname $0 )"
cd "$D/../.."
rm -rfv .pc debian/patches

