Skip to content
Snippets Groups Projects
Commit afba0527 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Don't use non-portable "ln -s -f".

parent 68b508d2
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment