diff options
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2014-02-07 09:18:06 -0500 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | 2014-02-07 09:18:06 -0500 |
commit | d2744118dc2701e3bca5f839040664b205001ed8 (patch) | |
tree | 48f03a2fd00f3717bd326533d555563730db8b11 | |
parent | f3078c33f6fd90faba50ebad35acad2df037b450 (diff) | |
parent | 54bce08d52862b74ce3fbbc6b6bbade08d1300ed (diff) | |
download | monitoring-plugins-d2744118dc2701e3bca5f839040664b205001ed8.tar.gz |
Merge pull request #1234 from skottler/plugin_makefile_whitespace
Remove unnecessary whitespace in Makefile.am
-rw-r--r-- | plugins/Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am index d2ac4bec..368876ea 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -11,7 +11,7 @@ endif AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"' -VPATH = $(top_srcdir) $(top_srcdir)/lib $(top_srcdir)/plugins $(top_srcdir)/plugins/t +VPATH = $(top_srcdir) $(top_srcdir)/lib $(top_srcdir)/plugins $(top_srcdir)/plugins/t INCLUDES = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl @LDAPINCLUDE@ @PGINCLUDE@ @SSLINCLUDE@ @@ -129,11 +129,10 @@ 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_ldap ] ; then rm -f check_ldaps ; ln -s check_ldap check_ldaps ; fi - + clean-local: rm -f $(check_tcp_programs) rm -f NP-VERSION-FILE uninstall-local: cd $(DESTDIR)$(libexecdir) && rm -f $(check_tcp_programs) - |