diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2007-12-13 22:22:27 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2007-12-13 22:22:27 (GMT) |
commit | 9747b9083cc3cd6a029fa88e6f9ae3a77e471a26 (patch) | |
tree | 95ac0e50f65bf8267de220a2f1a844c02bd1ba75 | |
parent | 4777710804f9302d391bb762abd95bd739b0d27a (diff) | |
download | monitoring-plugins-9747b9083cc3cd6a029fa88e6f9ae3a77e471a26.tar.gz |
Fixed VPATH problem in plugins-root (Tom Payerle - 1789000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1872 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | THANKS.in | 1 | ||||
-rw-r--r-- | plugins-root/Makefile.am | 2 |
3 files changed, 3 insertions, 1 deletions
@@ -18,6 +18,7 @@ This file documents the major additions and syntax changes between releases. | |||
18 | Fix check_load argument handling when not passing triplets (bug #1831890) | 18 | Fix check_load argument handling when not passing triplets (bug #1831890) |
19 | Tinderbox builds now run tests in a verbose mode | 19 | Tinderbox builds now run tests in a verbose mode |
20 | Update to Nagios::Plugin 0.22 | 20 | Update to Nagios::Plugin 0.22 |
21 | VPATH problem fixed for compiling plugins-root | ||
21 | 22 | ||
22 | 1.4.10 28th September 2007 | 23 | 1.4.10 28th September 2007 |
23 | Fix check_http buffer overflow vulnerability when following HTTP redirects | 24 | Fix check_http buffer overflow vulnerability when following HTTP redirects |
@@ -228,3 +228,4 @@ Sebastien Guay | |||
228 | Matteo HCE Valsasna | 228 | Matteo HCE Valsasna |
229 | Bernhard Fischer | 229 | Bernhard Fischer |
230 | fabiodds | 230 | fabiodds |
231 | Tom Payerle | ||
diff --git a/plugins-root/Makefile.am b/plugins-root/Makefile.am index 9623212..e61ebc7 100644 --- a/plugins-root/Makefile.am +++ b/plugins-root/Makefile.am | |||
@@ -1,6 +1,6 @@ | |||
1 | ## Process this file with automake to produce Makefile.in | 1 | ## Process this file with automake to produce Makefile.in |
2 | 2 | ||
3 | VPATH = $(top_srcdir) $(top_srcdir)/lib $(top_srcdir)/plugins $(top_srcdir)/plugins/t | 3 | VPATH = $(top_srcdir) $(top_srcdir)/lib $(top_srcdir)/plugins $(top_srcdir)/plugins/t $(srcdir) |
4 | 4 | ||
5 | INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins @SSLINCLUDE@ | 5 | INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins @SSLINCLUDE@ |
6 | 6 | ||