Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-4]: src/share/mk Pull up revision 1.54 (requested by itojun):



details:   https://anonhg.NetBSD.org/src/rev/5b33883bf6b1
branches:  netbsd-1-4
changeset: 470863:5b33883bf6b1
user:      he <he%NetBSD.org@localhost>
date:      Tue Aug 15 22:18:10 2000 +0000

description:
Pull up revision 1.54 (requested by itojun):
  Do not test $UPDATE nor file existence on MLINKS installation,
  so that original manual page and links do not get out of sync.

diffstat:

 share/mk/bsd.man.mk |  14 +++++---------
 1 files changed, 5 insertions(+), 9 deletions(-)

diffs (35 lines):

diff -r 1848ebc2aaaa -r 5b33883bf6b1 share/mk/bsd.man.mk
--- a/share/mk/bsd.man.mk       Tue Aug 15 22:09:14 2000 +0000
+++ b/share/mk/bsd.man.mk       Tue Aug 15 22:18:10 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.man.mk,v 1.45.2.2 1999/09/10 23:00:22 he Exp $
+#      $NetBSD: bsd.man.mk,v 1.45.2.3 2000/08/15 22:18:10 he Exp $
 #      @(#)bsd.man.mk  8.1 (Berkeley) 6/8/93
 
 .if !target(__initialized__)
@@ -118,10 +118,8 @@
                shift; \
                dir=${DESTDIR}${MANDIR}/cat$${name##*.}; \
                t=$${dir}${MANSUBDIR}/$${name%.*}.0${MCOMPRESSSUFFIX}; \
-               if [ -z "${UPDATE}" -o ! -f $$t ]; then \
-                   echo $$t -\> $$l; \
-                   ln -f $$l $$t; \
-               fi; \
+               echo $$t -\> $$l; \
+               ln -f $$l $$t; \
        done
 .endif
 .else
@@ -140,10 +138,8 @@
                shift; \
                dir=${DESTDIR}${MANDIR}/man$${name##*.}; \
                t=$${dir}${MANSUBDIR}/$${name}${MCOMPRESSSUFFIX}; \
-               if [ -z "${UPDATE}" -o ! -f $$t ]; then \
-                   echo $$t -\> $$l; \
-                   ln -f $$l $$t; \
-               fi; \
+               echo $$t -\> $$l; \
+               ln -f $$l $$t; \
        done
 .endif
 



Home | Main Index | Thread Index | Old Index