diff options
author | joerg <joerg@FreeBSD.org> | 1996-10-20 13:14:40 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1996-10-20 13:14:40 +0000 |
commit | 21bccdcd4a4275128017d9f3bc90a98c3fb3302d (patch) | |
tree | e6d76e61c9b21902b8649ab5e1146190b63d3542 /gnu/usr.bin | |
parent | 0c6cd17945d88a0c7330e2b4c5cf66b376a591d7 (diff) | |
download | FreeBSD-src-21bccdcd4a4275128017d9f3bc90a98c3fb3302d.zip FreeBSD-src-21bccdcd4a4275128017d9f3bc90a98c3fb3302d.tar.gz |
Make it clear that a vendor-branch import adds something to the
existing sources.
Requested by: markm
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/cvs/contrib/easy-import.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/cvs/contrib/easy-import.pl b/gnu/usr.bin/cvs/contrib/easy-import.pl index 7874842..5e2caee 100644 --- a/gnu/usr.bin/cvs/contrib/easy-import.pl +++ b/gnu/usr.bin/cvs/contrib/easy-import.pl @@ -8,7 +8,7 @@ # # Written by Jörg Wunsch, 95/03/07, and placed in the public domain. # -# $Id: easy-import.pl,v 1.7 1996/04/28 12:32:43 joerg Exp $ +# $Id: easy-import.pl,v 1.8 1996/08/20 20:37:47 joerg Exp $ require "complete.pl"; require "getopts.pl"; @@ -22,7 +22,7 @@ sub scan_opts $dont_do_it = "-n" if $opt_n; if($opt_v) { - print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.7 $' . "\n"; # 'emacs kludge + print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.8 $' . "\n"; # 'emacs kludge exit 0; } die "usage: $0 [-v] [-n] [moduledir]\n" . @@ -272,8 +272,8 @@ for(;;) { next; } last if !$cvsmods{$modname}; - print "\a${us}This module name does already exist;\n" . - "do you intend to create a vendor-branch import?${ue}: "; + print "\a${us}This module name does already exist; do you intend to\n" . + "perform a vendor-branch import to the existing sources?${ue}: "; $rep = <>; if ($rep =~ /\s*[yY]/) { ($area,$modpath) = split(/\//,$cvsmods{$modname},2); |