Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm32/stand Fixed CVS directory overwriting by dele...



details:   https://anonhg.NetBSD.org/src/rev/178f2c334213
branches:  trunk
changeset: 503980:178f2c334213
user:      reinoud <reinoud%NetBSD.org@localhost>
date:      Mon Feb 19 14:32:45 2001 +0000

description:
Fixed CVS directory overwriting by deleting it in the copy first; this to
prevent import trouble due to messed up CVS directories.

diffstat:

 sys/arch/arm32/stand/export-BtNetBSD |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (27 lines):

diff -r 3b960537bc58 -r 178f2c334213 sys/arch/arm32/stand/export-BtNetBSD
--- a/sys/arch/arm32/stand/export-BtNetBSD      Mon Feb 19 14:26:41 2001 +0000
+++ b/sys/arch/arm32/stand/export-BtNetBSD      Mon Feb 19 14:32:45 2001 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: export-BtNetBSD,v 1.4 2001/02/19 14:26:41 reinoud Exp $
+# $NetBSD: export-BtNetBSD,v 1.5 2001/02/19 14:32:45 reinoud Exp $
 # creates all binary files from the uue files from the source tree
 # to be run in the directory next to the directory NetBSD
 #
@@ -8,6 +8,7 @@
 cp -R BtNetBSD BtNetBSD.RO
 chmod -R a+r BtNetBSD.RO
 cd BtNetBSD.RO
+find . -name CVS -exec rm -r {} \;
 
 cd pling.BtNetBSD
 
@@ -33,6 +34,7 @@
 mv pling.BtNetBSD \!BtNetBSD
 
 cd ..
+rm -f BtNetBSD.RO.tar
 tar cvf BtNetBSD.RO.tar BtNetBSD.RO
 
 rm -rf BtNetBSD.RO



Home | Main Index | Thread Index | Old Index