From a914ff817121dc876dbe7b5b58275b55009e2895 Mon Sep 17 00:00:00 2001 From: Ben Collins Date: Sun, 28 Feb 1999 17:08:54 +0000 Subject: [PATCH] Fixed a small mistake in the last commit, as well as adding a clean-common to remove the tmp files --- build/man.mk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 2.39.5