Source-Changes-HG archive

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

[src/netbsd-1-6]: src/share/zoneinfo Pull up revision 1.29 (requested by maso...



details:   https://anonhg.NetBSD.org/src/rev/db8b10a476fc
branches:  netbsd-1-6
changeset: 527880:db8b10a476fc
user:      lukem <lukem%NetBSD.org@localhost>
date:      Tue Jun 11 16:02:11 2002 +0000

description:
Pull up revision 1.29 (requested by mason in ticket #248):
Use the new cat(1) locking functionality - should solve PR toolchain/16963.
If all goes well, will submit a batch of pull-up requests for netbsd-1-6
presently to bring these additions and fixes into 1.6.

diffstat:

 share/zoneinfo/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r 60f6113ab169 -r db8b10a476fc share/zoneinfo/Makefile
--- a/share/zoneinfo/Makefile   Tue Jun 11 16:02:01 2002 +0000
+++ b/share/zoneinfo/Makefile   Tue Jun 11 16:02:11 2002 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.28 2002/01/05 07:35:20 mrg Exp $
+#      $NetBSD: Makefile,v 1.28.2.1 2002/06/11 16:02:11 lukem Exp $
 
 NOOBJ= # defined
 
@@ -81,10 +81,10 @@
 .else
        find ${TZDIR} -type d | xargs -n 1 printf \
                "%s type=dir mode=0755 uname=${BINOWN} gname=${BINGRP}\n" | \
-               sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
+               sed -e 's|^/|./|g' -e 's|//|/|g' | ${CAT} -l >> ${METALOG}
        find ${TZDIR} -type f | xargs -n 1 printf \
                "%s type=file mode=0444 uname=${BINOWN} gname=${BINGRP}\n" | \
-               sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
+               sed -e 's|^/|./|g' -e 's|//|/|g' | ${CAT} -l >> ${METALOG}
 .endif
 .else
 afterinstall:



Home | Main Index | Thread Index | Old Index