1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
Description: Fix perl interpreter path
Policy 4.1.2 requires the perl interpreter to be '#!/usr/bin/perl'.
Author: Jakob Haufe <sur5r@debian.org>
Origin: vendor
Forwarded: not-needed
Last-Update: 2022-10-02
--- i3-wm-4.19.orig/contrib/dump-asy.pl
+++ i3-wm-4.19/contrib/dump-asy.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# vim:ts=4:sw=4:expandtab
use strict;
--- i3-wm-4.19.orig/contrib/per-workspace-layout.pl
+++ i3-wm-4.19/contrib/per-workspace-layout.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# vim:ts=4:sw=4:expandtab
# © 2012 Michael Stapelberg
# Licensed under BSD license, see https://github.com/i3/i3/blob/next/LICENSE
--- i3-wm-4.19.orig/i3-dmenu-desktop
+++ i3-wm-4.19/i3-dmenu-desktop
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# vim:ts=4:sw=4:expandtab
#
# © 2012 Michael Stapelberg
--- i3-wm-4.19.orig/i3-migrate-config-to-v4
+++ i3-wm-4.19/i3-migrate-config-to-v4
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# vim:ts=4:sw=4:expandtab
#
# script to migrate an old config file (i3 < 4.0) to the new format (>= 4.0)
--- i3-wm-4.19.orig/i3-save-tree
+++ i3-wm-4.19/i3-save-tree
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# vim:ts=4:sw=4:expandtab
#
# © 2013 Michael Stapelberg
--- i3-wm-4.21.orig/contrib/gtk-tree-watch.pl
+++ i3-wm-4.21/contrib/gtk-tree-watch.pl
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# vim:ts=4:sw=4:expandtab
# renders the layout tree using asymptote
--- i3-wm-4.21.orig/contrib/i3-wsbar
+++ i3-wm-4.21/contrib/i3-wsbar
@@ -1,4 +1,4 @@
-#!/usr/bin/env perl
+#!/usr/bin/perl
# vim:ts=4:sw=4:expandtab:ft=perl
# © 2010 Michael Stapelberg, see LICENSE for license information
|