diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-06-21 05:49:39 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-06-21 05:49:39 (GMT) |
commit | 54cee62d8d0a021b9165aa2a63948302fff37f1f (patch) | |
tree | 3f61223f4e64eeb79aadcadd58105efba2e7da7a /plugins | |
parent | 2bc296abb6df68eaed5c49b289ce996d3a39729e (diff) | |
download | monitoring-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')
-rw-r--r-- | plugins/Makefile.am | 4 |
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) | |||
123 | all-local: $(check_tcp_programs) | 123 | all-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 | ||
128 | install-exec-hook: | 128 | install-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 | ||
132 | clean-local: | 132 | clean-local: |
133 | rm -f $(check_tcp_programs) | 133 | rm -f $(check_tcp_programs) |