summaryrefslogtreecommitdiffstats
path: root/plugins/Makefile.am
diff options
context:
space:
mode:
authorKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-06-21 05:49:39 (GMT)
committerKarl DeBisschop <kdebisschop@users.sourceforge.net>2003-06-21 05:49:39 (GMT)
commit54cee62d8d0a021b9165aa2a63948302fff37f1f (patch)
tree3f61223f4e64eeb79aadcadd58105efba2e7da7a /plugins/Makefile.am
parent2bc296abb6df68eaed5c49b289ce996d3a39729e (diff)
downloadmonitoring-plugins-54cee62d8d0a021b9165aa2a63948302fff37f1f.tar.gz
soalris 8 needs 'ln -s -f' instead of 'ln -sf'
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@552 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/Makefile.am')
-rw-r--r--plugins/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index f1fe85c..d9f10f7 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -123,11 +123,11 @@ gethostbyname.o: gethostbyname.h $(PLUGINHDRS)
123all-local: $(check_tcp_programs) 123all-local: $(check_tcp_programs)
124 124
125$(check_tcp_programs): check_tcp 125$(check_tcp_programs): check_tcp
126 ln -sf check_tcp $@ 126 ln -s -f check_tcp $@
127 127
128install-exec-hook: 128install-exec-hook:
129 cd $(DESTDIR)$(libexecdir) && \ 129 cd $(DESTDIR)$(libexecdir) && \
130 for i in $(check_tcp_programs) ; do rm -f $$i; ln -sf check_tcp $$i ; done 130 for i in $(check_tcp_programs) ; do rm -f $$i; ln -s -f check_tcp $$i ; done
131 131
132clean-local: 132clean-local:
133 rm -f $(check_tcp_programs) 133 rm -f $(check_tcp_programs)