summaryrefslogtreecommitdiffstats
path: root/debian/lintian-to-copyright.sh
blob: 866e31bcd04c82e2e2d9c107ad3e8caded61c90d (plain)
1
2
3
4
5
#!/bin/sh
# Pipe the output of lintian into this.
sed -ne 's/.* file-without-copyright-information //p' | cut -d/ -f1-2 | sort -u | while read x; do
	debian/scripts/guess-crate-copyright "$x"
done