diff options
author | M. Sean Finney <seanius@users.sourceforge.net> | 2005-10-29 12:46:49 +0000 |
---|---|---|
committer | M. Sean Finney <seanius@users.sourceforge.net> | 2005-10-29 12:46:49 +0000 |
commit | e2e455a53ef11e27d7ba54db2f11b2caf09c79f2 (patch) | |
tree | 69af4ccb95424f64490a18cb0e05acf329fb3217 /plugins | |
parent | 16cd0c8151eee652d88b0b6f3aaa5b917cb87e13 (diff) | |
download | monitoring-plugins-e2e455a53ef11e27d7ba54db2f11b2caf09c79f2.tar.gz |
patch from nsturm: Makefile.am should have been checking for check_ldap
instead of check_ldaps. the result was that check_ldaps was not being
created during the build process.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1262 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 4c33ee17..52008787 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -144,7 +144,7 @@ $(check_tcp_programs): check_tcp install-exec-hook: cd $(DESTDIR)$(libexecdir) && \ for i in $(check_tcp_programs) ; do rm -f $$i; ln -s check_tcp $$i ; done ;\ - if [ -x check_ldaps ] ; then rm -f check_ldaps ; ln -s check_ldap check_ldaps ; fi + if [ -x check_ldap ] ; then rm -f check_ldaps ; ln -s check_ldap check_ldaps ; fi clean-local: rm -f $(check_tcp_programs) |