From f76e8d57108052d75aacd12775f5aae5ca95eff3 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Thu, 30 Jan 2014 16:33:44 -0300 Subject: [PATCH] roken-h-process: use Getopt::Std, getopts.pl is deprecated MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Gustavo Zacarias Signed-off-by: Love Hörnquist Åstrand --- cf/roken-h-process.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cf/roken-h-process.pl b/cf/roken-h-process.pl index 153a35ce8..72d3bd37c 100644 --- a/cf/roken-h-process.pl +++ b/cf/roken-h-process.pl @@ -1,10 +1,10 @@ #!/usr/bin/perl -require 'getopts.pl'; +use Getopt::Std; my $debug = 0; -Getopts('dc:p:o:') || die "foo"; +getopts('dc:p:o:') || die "foo"; if ($opt_d) { $debug = 1; -- 2.11.4.GIT