summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 19c02cd..8f25623 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -130,11 +130,12 @@ gethostbyname.o: gethostbyname.h $(PLUGINHDRS)
130all-local: $(check_tcp_programs) 130all-local: $(check_tcp_programs)
131 131
132$(check_tcp_programs): check_tcp 132$(check_tcp_programs): check_tcp
133 ln -s -f check_tcp $@ 133 rm -f $@
134 ln -s check_tcp $@
134 135
135install-exec-hook: 136install-exec-hook:
136 cd $(DESTDIR)$(libexecdir) && \ 137 cd $(DESTDIR)$(libexecdir) && \
137 for i in $(check_tcp_programs) ; do rm -f $$i; ln -s -f check_tcp $$i ; done 138 for i in $(check_tcp_programs) ; do rm -f $$i; ln -s check_tcp $$i ; done
138 139
139clean-local: 140clean-local:
140 rm -f $(check_tcp_programs) 141 rm -f $(check_tcp_programs)