diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-06-21 05:48:23 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2003-06-21 05:48:23 +0000 |
commit | 535786e685c1380a0a54ab88f6b80ef8fd5e8d52 (patch) | |
tree | 1b1bcd2991c71f73fa9328d64bc3ae4461b832ce | |
parent | cdc2c57b21ff4541e2d588c805ff383ff4186eae (diff) | |
download | monitoring-plugins-535786e685c1380a0a54ab88f6b80ef8fd5e8d52.tar.gz |
solaris 8 needs 'ln -s -f' instead of 'ln -sf'
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/branches/release-1.3.0@551 f882894a-f735-0410-b71e-b25c423dba1c
-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 851745a7..4cf44c6c 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am | |||
@@ -127,11 +127,11 @@ libsnprintf.a: snprintf.o | |||
127 | all-local: $(check_tcp_programs) | 127 | all-local: $(check_tcp_programs) |
128 | 128 | ||
129 | $(check_tcp_programs): check_tcp | 129 | $(check_tcp_programs): check_tcp |
130 | ln -sf check_tcp $@ | 130 | ln -s -f check_tcp $@ |
131 | 131 | ||
132 | install-exec-hook: | 132 | install-exec-hook: |
133 | cd $(DESTDIR)$(libexecdir) && \ | 133 | cd $(DESTDIR)$(libexecdir) && \ |
134 | for i in $(check_tcp_programs) ; do rm -f $$i; ln -sf check_tcp $$i ; done | 134 | for i in $(check_tcp_programs) ; do rm -f $$i; ln -s -f check_tcp $$i ; done |
135 | 135 | ||
136 | clean-local: | 136 | clean-local: |
137 | rm -f $(check_tcp_programs) | 137 | rm -f $(check_tcp_programs) |