Don't use non-portable "ln -s -f" command to install manpages. (ITS#227)

This commit is contained in:
Kurt Zeilenga 1999-07-16 17:13:07 +00:00
parent fb640a7308
commit ab186a1866
2 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,8 @@ OpenLDAP Change Log
Changes included in OpenLDAP 1.2 Release Engineering
CVS Tag: OPENLDAP_REL_ENG_1_2
<insert changes here>
Build environment
Don't use "ln -s -f file link" (ITS#227)
Changes included in OpenLDAP 1.2.4
CVS Tag: OPENLDAP_REL_ENG_1_2_4

View File

@ -35,7 +35,8 @@ install-common:
if test -f "$(srcdir)/$$page.links" ; then \
for link in `$(CAT) $(srcdir)/$$page.links`; do \
echo "installing $(MANDIR)/$$link as link to $$page"; \
$(LN_S) -f $$page $(MANDIR)/$$link; \
$(RM) $(MANDIR)/$$link; \
$(LN_S) $$page $(MANDIR)/$$link; \
done; \
fi; \
done