aboutsummaryrefslogtreecommitdiff
path: root/net-mgmt/nfsen-devel/files/patch-install.pl
diff options
context:
space:
mode:
Diffstat (limited to 'net-mgmt/nfsen-devel/files/patch-install.pl')
-rw-r--r--net-mgmt/nfsen-devel/files/patch-install.pl46
1 files changed, 0 insertions, 46 deletions
diff --git a/net-mgmt/nfsen-devel/files/patch-install.pl b/net-mgmt/nfsen-devel/files/patch-install.pl
deleted file mode 100644
index 4b4113a85cc1..000000000000
--- a/net-mgmt/nfsen-devel/files/patch-install.pl
+++ /dev/null
@@ -1,46 +0,0 @@
-
-$FreeBSD$
-
---- install.pl.orig
-+++ install.pl
-@@ -1,4 +1,4 @@
--#!/usr/bin/perl
-+#!%%PERL%% -I %%PREFIX%%/libexec/nfsen
- #
- #
- # Copyright (c) 2004, SWITCH - Teleinformatikdienste fuer Lehre und Forschung
-@@ -81,33 +81,7 @@
- # Get Perl
- sub GetPerl {
-
-- my $whichperl;
-- my $ans;
-- $whichperl = FindCommand("perl");
-- if ( defined $whichperl ) {
-- print "Perl to use: [$whichperl] ";
-- chomp($ans = <STDIN>);
-- if ( length $ans ) {
-- $whichperl = $ans;
-- }
-- } else {
-- print "No Perl found in your PATH. Please specify where to find perl [] ";
-- chomp($whichperl = <STDIN>);
-- }
--
-- while (1) {
-- if ( -x $whichperl ) {
-- my $err = system("$whichperl -e 'require 5.6.0;'") >> 8;
-- last if $err == 0;
-- print "Found errors while testing Perl\n";
-- } else {
-- print "No executable: '$whichperl'\n";
-- }
-- print "Perl to use: [] ";
-- chomp($whichperl = <STDIN>);
-- }
--
-- return $whichperl;
-+ return "%%PERL%%";
-
- } # End of GetPerl
-