linux-kbuild: Change "#!/usr/bin/env perl" to "#!/usr/bin/perl"

This commit is contained in:
Ben Hutchings 2018-08-02 17:02:23 +08:00
parent b91655bf3e
commit b5fe66a8db
3 changed files with 17 additions and 1 deletions

12
debian/bin/fix-shebang vendored Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/perl -pi
# Change "#!/usr/bin/env perl" to "#!/usr/bin/perl" (policy §10.4).
# Other uses of /usr/bin/env should probably be converted as well, but
# policy doesn't specify what to do.
if ($. == 1 && m|^\#!\s*/usr/bin/env\s+(.+)|) {
if ($1 == "perl") {
$_ = "#!/usr/bin/perl\n";
} else {
print STDERR "W: Found #!/usr/bin/env $1 and don't know what to substitute\n";
}
}

2
debian/changelog vendored
View File

@ -13,6 +13,8 @@ linux (4.18~rc7-1~exp1) UNRELEASED; urgency=medium
* certs: Remove certificates for test key used in Debian signing service and
for my personal signing key
* certs: Add certificate for production key used in Debian signing service
* Update policy version to 4.2.0:
- linux-kbuild: Change "#!/usr/bin/env perl" to "#!/usr/bin/perl"
-- Uwe Kleine-König <ukleinek@debian.org> Sat, 21 Jul 2018 16:52:01 +0200

View File

@ -44,7 +44,9 @@ SCRIPTS_REAL = $(wildcard $(addprefix $(top_srcdir)/$(OUTDIR)/,$(SCRIPTS)))
install-local-scripts: $(SCRIPTS_REAL)
@for p in $^; do \
echo " install -m755 '$$p' '$(DESTDIR)/$(installdir)'"; \
install -D -m755 "$$p" "$(DESTDIR)/$(installdir)/$$(basename $$p)"; \
install -D -m755 \
-s --strip-program $(top_srcdir)/debian/bin/fix-shebang \
"$$p" "$(DESTDIR)/$(installdir)/$$(basename $$p)"; \
done
DATA_REAL = $(wildcard $(addprefix $(top_srcdir)/$(OUTDIR)/,$(DATA)))