summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 652cb86)
raw | patch | inline | side by side (parent: 652cb86)
author | Subhendu Ghosh <sghosh@users.sourceforge.net> | |
Mon, 18 Mar 2002 05:15:04 +0000 (05:15 +0000) | ||
committer | Subhendu Ghosh <sghosh@users.sourceforge.net> | |
Mon, 18 Mar 2002 05:15:04 +0000 (05:15 +0000) |
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@8 f882894a-f735-0410-b71e-b25c423dba1c
plugins-scripts/subst.in | patch | blob | history |
index cc0fd1b6442c3bff2c8ba5443ff286f7c61adf40..9140157bb74d7db5ced2195abdbcd8473231aefe 100644 (file)
--- a/plugins-scripts/subst.in
+++ b/plugins-scripts/subst.in
return c;
}
+# used to replace "use lib utils.pm" with "use lib @libexecdir"
+#
+function led() {
+ led1 = "@libexecdir@";
+ led2 = "@exec_prefix@";
+ led3 = "@prefix@";
+ if ( match(led1, /^\$\{exec_prefix\}/ ) != 0 ) {
+ return "\"" led3 "/libexec\" " ;
+
+ }
+ return led1;
+}
+
BEGIN {
split(ENVIRON["PATH"] ":/sbin:/usr/sbin",path,/:/);
+
}
# scripting language (first line)
/^#! ?\/.*\/[a-z]{0,2}awk/ {sub(/^#! ?\/.*\/[a-z]{0,2}awk/,"#! @AWK@");}
/^#! ?\/.*\/sh/ {sub(/^#! ?\/.*\/sh/,"#! @SHELL@");}
+# add to libexecdir to INC for perl utils.pm
+/^use/ { if (/lib/) { if (/utils.pm/ ) {sub(/utils.pm/,led() )} } }
+
+
# Trusted path mechanism (deprecated)
/^[ \t]*\$ENV[ \t]*\{[ \t'"]*PATH[ \t"']*\}[ \t]*=/ {