From: Ian Jackson Date: Sat, 20 Aug 2022 18:58:53 +0000 (+0100) Subject: prefork-interp: rename perl module and sort out file locations X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=974a8eddcedf08a6ca152baf6ddc50d05264e146;p=chiark-utils.git prefork-interp: rename perl module and sort out file locations Signed-off-by: Ian Jackson --- diff --git a/Proc b/Proc deleted file mode 120000 index 09e7407..0000000 --- a/Proc +++ /dev/null @@ -1 +0,0 @@ -perl \ No newline at end of file diff --git a/perl/prefork-interp-test b/perl/prefork-interp-test index 6028e57..2db267e 100755 --- a/perl/prefork-interp-test +++ b/perl/prefork-interp-test @@ -2,8 +2,8 @@ # -*- perl -*- use strict; -BEGIN { unshift @INC, '.' } -use Proc::Prefork; +BEGIN { unshift @INC, './pm' } +use Proc::Prefork::Interp; sub prwhen ($) { my ($when) = @_; diff --git a/perl/Prefork.pm b/pm/Proc/Prefork/Interp.pm similarity index 99% rename from perl/Prefork.pm rename to pm/Proc/Prefork/Interp.pm index 2ee8e57..3b38ffa 100644 --- a/perl/Prefork.pm +++ b/pm/Proc/Prefork/Interp.pm @@ -1,5 +1,5 @@ -package Proc::Prefork; +package Proc::Prefork::Interp; require Exporter; our @ISA = qw(Exporter); our @EXPORT = qw(initialisation_complete);