From aec05f66f79611b89cefc00b805a40395a982ad4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tina=20M=C3=BCller?= Date: Wed, 24 Aug 2022 11:14:09 +0200 Subject: [PATCH] Normalize shebangs to /usr/bin/perl Unless there is a need for the special shebangs, they should be all pointing to the standard location. --- eg/abuse/blocking_debug_with_sub_coprocess | 2 +- eg/abuse/timers | 2 +- eg/run_daemon | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eg/abuse/blocking_debug_with_sub_coprocess b/eg/abuse/blocking_debug_with_sub_coprocess index 54c3c52..d6445a8 100644 --- a/eg/abuse/blocking_debug_with_sub_coprocess +++ b/eg/abuse/blocking_debug_with_sub_coprocess @@ -1,4 +1,4 @@ -#!/opt/i386-linux/perl/bin/perl -w +#!/usr/bin/perl -w ## Submitted by Blair Zajac diff --git a/eg/abuse/timers b/eg/abuse/timers index d945f3f..e27eaf6 100644 --- a/eg/abuse/timers +++ b/eg/abuse/timers @@ -1,4 +1,4 @@ -#!/usr/local/lib/perl -w +#!/usr/bin/perl -w use strict; use IPC::Run qw( :all ); diff --git a/eg/run_daemon b/eg/run_daemon index ce1a95c..a7c528a 100644 --- a/eg/run_daemon +++ b/eg/run_daemon @@ -1,4 +1,4 @@ -#!/usr/local/bin/perl -w +#!/usr/bin/perl -w ## An example of how to daemonize. See the IPC::Run LIMITATIONS section for ## some reasons why this can be a bit dangerous.