summaryrefslogtreecommitdiff
path: root/brp-clean-perl-files
blob: c34fdb8110c6f381ebfc57fd8ee34e515709a05b (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for d in $RPM_BUILD_ROOT/usr/{lib,lib64,share}/perl5; do
	[ -d $d ] || continue
	find $d -type f -name ".packlist" -delete
	find $d -type f -name "*.bs" -size 0 -delete
done

perl -MConfig -e 'unlink "$ENV{RPM_BUILD_ROOT}$Config{installarchlib}/perllocal.pod"'