summaryrefslogtreecommitdiff
path: root/dev-perl/Perlbal/files/Perlbal-1.58-Use-saner-name-in-process-listing.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:57:42 +0100
commit1798c4aeca70ac8d0a243684d6a798fbc65735f8 (patch)
treee48e19cb6fa03de18e1c63e1a93371b7ebc4eb56 /dev-perl/Perlbal/files/Perlbal-1.58-Use-saner-name-in-process-listing.patch
parentd87262dd706fec50cd150aab3e93883b6337466d (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'dev-perl/Perlbal/files/Perlbal-1.58-Use-saner-name-in-process-listing.patch')
-rw-r--r--dev-perl/Perlbal/files/Perlbal-1.58-Use-saner-name-in-process-listing.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-perl/Perlbal/files/Perlbal-1.58-Use-saner-name-in-process-listing.patch b/dev-perl/Perlbal/files/Perlbal-1.58-Use-saner-name-in-process-listing.patch
deleted file mode 100644
index 1ccafb9cb9b7..000000000000
--- a/dev-perl/Perlbal/files/Perlbal-1.58-Use-saner-name-in-process-listing.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 75b0930eb392c6389f6e96b0c1df067ae917b962 Mon Sep 17 00:00:00 2001
-From: Robin H. Johnson <robbat2@gentoo.org>
-Date: Sat, 12 May 2007 21:32:53 -0700
-Subject: [PATCH perlbal] Use saner name in process listing.
-
-Normally the binary will turn up in the process list as:
-/usr/bin/perl $SCRIPTNAME
-
-By adding a single line, we can make it be simply '$SCRIPTNAME'.
-This makes writing init.d scripts signficently easier.
-
-Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
----
- perlbal | 4 ++++
- 1 files changed, 4 insertions(+), 0 deletions(-)
-
-diff --git a/perlbal b/perlbal
-index f0149b3..7a9d28c 100755
---- a/perlbal
-+++ b/perlbal
-@@ -37,6 +37,10 @@ my $opt_daemonize;
- my $opt_config;
- my $opt_help;
- my $opt_version;
-+
-+# Rename binary in process list to make init scripts saner
-+$0 = $_ = $0;
-+
- usage(1) unless
- Getopt::Long::GetOptions(
- 'daemon' => \$opt_daemonize,
---
-1.5.1.4
-