From bb47d8c39164c8f236b54a74deec36b9b664241f Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Sun, 20 Oct 1996 13:14:40 +0000 Subject: [PATCH] Make it clear that a vendor-branch import adds something to the existing sources. Requested by: markm --- gnu/usr.bin/cvs/contrib/easy-import.pl | 8 ++++---- 1 file 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 7874842fa6f8..5e2caee764f9 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);