blob: b338299f57fa8d9f321cbe148fc426bfb1112110 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/make -f
%:
dh $@
# Replace the shebang line in perl scripts to
# comply with Policy 10.4
override_dh_auto_install:
dh_auto_install
sed -i -e "1 s,^.*perl.*$$,#!/usr/bin/perl," $(CURDIR)/debian/po4a/usr/bin/*
|