From: Ben Collins Date: Sun, 28 Feb 1999 17:08:54 +0000 (+0000) Subject: Fixed a small mistake in the last commit, as well as adding a clean-common to remove... X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~539 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a914ff817121dc876dbe7b5b58275b55009e2895;p=openldap Fixed a small mistake in the last commit, as well as adding a clean-common to remove the tmp files --- diff --git a/build/man.mk b/build/man.mk index 53d97f4b4a..2f39e7ccb2 100644 --- a/build/man.mk +++ b/build/man.mk @@ -35,11 +35,12 @@ install-common: if [ -f "$$page.links" ]; then \ for link in `$(CAT) $$page.links`; do \ echo "installing $(MANDIR)/$$link as link to $$page"; \ - $(RM) $(INSTDIR)/$$link $(MANDIR)/$$link; \ - $(LN_S) -sf $$page $(MANDIR)/$$link; \ + $(LN_S) -f $$page $(MANDIR)/$$link; \ done; \ fi; \ done; \ - $(RM) $$TMPMAN -Makefile: $(top_srcdir)/build/lib.mk +clean-common: FORCE + $(RM) *.tmp all-common + +Makefile: $(top_srcdir)/build/man.mk