Control: tags -1 + patch Please forward the following Git patch to upstream if you could, I don't have a GitHub account or other contact with the upstream. (I'm also personally banned from all of New Vector's Matrix.org rooms directly for silly reasons.)
I'm also including the DEP-3 formatted patch for Debian.
Description: Fix Lintian warning incorrect-path-for-interpreter Origin: vendor, https://bugs.debian.org/927844 Bug-Debian: https://bugs.debian.org/927844 Forwarded: no Author: Linda Lapinlampi <li...@lindalap.fi> Last-Update: 2019-04-24 --- a/scripts/sync_room_to_group.pl +++ b/scripts/sync_room_to_group.pl @@ -1,4 +1,4 @@ -#!/usr/bin/env perl +#!/usr/bin/perl use strict; use warnings;
>From 6530ef5cbdb00eba10cbf298252f74405519c9c3 Mon Sep 17 00:00:00 2001 From: Linda Lapinlampi <li...@lindalap.fi> Date: Wed, 24 Apr 2019 03:43:54 +0000 Subject: [PATCH] scripts: Fix Lintian incorrect-path-for-interpreter warning Replace /usr/bin/env with a direct path to the Perl interpreter under /usr/bin. Bug-Debian: https://bugs.debian.org/927844 See: https://lintian.debian.org/tags/incorrect-path-for-interpreter.html --- scripts/sync_room_to_group.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sync_room_to_group.pl b/scripts/sync_room_to_group.pl index f0c2dfadf..be68c153e 100755 --- a/scripts/sync_room_to_group.pl +++ b/scripts/sync_room_to_group.pl @@ -1,4 +1,4 @@ -#!/usr/bin/env perl +#!/usr/bin/perl use strict; use warnings; -- 2.20.1