diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2005-09-14 12:40:26 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2005-09-14 12:40:26 (GMT) |
commit | 63e9193516f2aa2edbbf7f0dadbdf4694c0821cb (patch) | |
tree | 8dec7ac1b5bcc624af06f5d9be94970f182e9deb /plugins | |
parent | 20d0154211fa46028383ed3a88b558731313c389 (diff) | |
download | monitoring-plugins-63e9193516f2aa2edbbf7f0dadbdf4694c0821cb.tar.gz |
Some makes do not like blank lines after "\". Fixed check_ldaps to only
generate if check_ldap was created (Chester Hosey)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1219 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 87a97a9..1e19bc7 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
@@ -2,8 +2,7 @@ | |||
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 |
4 | 4 | ||
5 | INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/intl \ | 5 | INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/intl @LDAPINCLUDE@ @PGINCLUDE@ |
6 | @LDAPINCLUDE@ @PGINCLUDE@ | ||
7 | 6 | ||
8 | datadir = @datadir@ | 7 | datadir = @datadir@ |
9 | localedir = $(datadir)/locale | 8 | localedir = $(datadir)/locale |
@@ -14,11 +13,11 @@ MATHLIBS = @MATHLIBS@ | |||
14 | libexec_PROGRAMS = check_dhcp check_disk check_dummy check_http check_load \ | 13 | libexec_PROGRAMS = check_dhcp check_disk check_dummy check_http check_load \ |
15 | check_mrtg check_mrtgtraf check_nwstat check_overcr check_ping \ | 14 | check_mrtg check_mrtgtraf check_nwstat check_overcr check_ping \ |
16 | check_real check_smtp check_ssh check_tcp check_time \ | 15 | check_real check_smtp check_ssh check_tcp check_time \ |
17 | check_udp check_ups check_users negate urlize check_icmp\ | 16 | check_udp check_ups check_users negate urlize \ |
18 | @EXTRAS@ | 17 | check_icmp @EXTRAS@ |
19 | 18 | ||
20 | check_tcp_programs = check_ftp check_imap check_nntp check_pop check_udp2 \ | 19 | check_tcp_programs = check_ftp check_imap check_nntp check_pop \ |
21 | @check_tcp_ssl@ | 20 | check_udp2 @check_tcp_ssl@ |
22 | 21 | ||
23 | EXTRA_PROGRAMS = check_mysql check_radius check_pgsql check_snmp check_hpjd \ | 22 | EXTRA_PROGRAMS = check_mysql check_radius check_pgsql check_snmp check_hpjd \ |
24 | check_swap check_fping check_ldap check_game check_dig \ | 23 | check_swap check_fping check_ldap check_game check_dig \ |
@@ -144,7 +143,7 @@ $(check_tcp_programs): check_tcp | |||
144 | install-exec-hook: | 143 | install-exec-hook: |
145 | cd $(DESTDIR)$(libexecdir) && \ | 144 | cd $(DESTDIR)$(libexecdir) && \ |
146 | for i in $(check_tcp_programs) ; do rm -f $$i; ln -s check_tcp $$i ; done ;\ | 145 | for i in $(check_tcp_programs) ; do rm -f $$i; ln -s check_tcp $$i ; done ;\ |
147 | rm -f check_ldaps ; ln -s -f check_ldap check_ldaps | 146 | if [ -x check_ldaps ] ; then rm -f check_ldaps ; ln -s check_ldap check_ldaps ; fi |
148 | 147 | ||
149 | clean-local: | 148 | clean-local: |
150 | rm -f $(check_tcp_programs) | 149 | rm -f $(check_tcp_programs) |