diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-10-08 04:14:54 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-10-08 04:14:54 +0000 |
commit | d255213cfbcd7142e6f224cbd795d805e218f0ce (patch) | |
tree | 4f3bbec458285591807373e7eb36beb25d84fe9c /net-mgmt/nagios-plugins/files | |
parent | Add USE_PERL5. (diff) |
- When libexecdir does not exist, the installed perl based plugins gets wrong
use lib directive. This is due to the installation procedure assumes
the existence of libexecdir. Fix this problem and bump PORTREVISION.
PR: ports/115443
Reported by: Stefan Kaltenbrunner <stefan at kaltenbrunner.cc>
Patched by: Jarrod Sayers <jarrod at netleader.com.au> (maintainer)
Notes
Notes:
svn path=/head/; revision=201066
Diffstat (limited to 'net-mgmt/nagios-plugins/files')
-rw-r--r-- | net-mgmt/nagios-plugins/files/patch-plugins-scripts__subst.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-mgmt/nagios-plugins/files/patch-plugins-scripts__subst.in b/net-mgmt/nagios-plugins/files/patch-plugins-scripts__subst.in new file mode 100644 index 000000000000..35b676b95201 --- /dev/null +++ b/net-mgmt/nagios-plugins/files/patch-plugins-scripts__subst.in @@ -0,0 +1,11 @@ +--- plugins-scripts/subst.in.orig Wed Aug 31 07:41:42 2005 ++++ plugins-scripts/subst.in Sun Sep 30 18:16:42 2007 +@@ -1,7 +1,7 @@ + #!/usr/bin/awk + + function which(c,path) { +- cmd = "test -x " c; ++ cmd = "[ " c " = @libexecdir@ ] || test -x " c; + + if (system(cmd)==0) { + return c; |