Source-Changes-HG archive

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

[src/trunk]: src/external/bsd/file fix wrong variable, import command



details:   https://anonhg.NetBSD.org/src/rev/70d1b92c8ce1
branches:  trunk
changeset: 777542:70d1b92c8ce1
user:      christos <christos%NetBSD.org@localhost>
date:      Wed Feb 22 17:47:25 2012 +0000

description:
fix wrong variable, import command

diffstat:

 external/bsd/file/file2netbsd |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r 0629741a3a74 -r 70d1b92c8ce1 external/bsd/file/file2netbsd
--- a/external/bsd/file/file2netbsd     Wed Feb 22 16:53:46 2012 +0000
+++ b/external/bsd/file/file2netbsd     Wed Feb 22 17:47:25 2012 +0000
@@ -1,6 +1,6 @@
 #! /bin/sh
 #
-#      $NetBSD: file2netbsd,v 1.2 2011/10/08 19:28:39 christos Exp $
+#      $NetBSD: file2netbsd,v 1.3 2012/02/22 17:47:25 christos Exp $
 #
 # Copyright (c) 2003, 2011 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -47,7 +47,7 @@
 find "$FILE" -name .cvsignore -delete
 
 ### Remove the $'s around RCS tags
-cleantags $d
+cleantags "$FILE"
 
 ### Add NetBSD RCS Id
 find "$FILE" -type f -name '*.[chly]' -print | while read c; do
@@ -99,6 +99,6 @@
 echo done
 
 echo You can import now.  Use the following command:
-echo cvs import src/external/bsd/file/dist CHRISTOS FILE${file_vers%.*}_${file_vers#*.}
+echo cvs -d cvs.netbsd.org:/cvsroot import src/external/bsd/file/dist CHRISTOS FILE${file_vers%.*}_${file_vers#*.}
 
 exit 0



Home | Main Index | Thread Index | Old Index