From owner-cvs-CVSROOT Tue Jul 15 08:21:05 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id IAA03920 for cvs-CVSROOT-outgoing; Tue, 15 Jul 1997 08:21:05 -0700 (PDT) Received: from itojun.csl.sony.co.jp (root@itojun.csl.sony.co.jp [133.138.1.134]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id IAA03898; Tue, 15 Jul 1997 08:20:57 -0700 (PDT) From: itojun@itojun.org Received: from localhost (itojun@localhost [127.0.0.1]) by itojun.csl.sony.co.jp (8.8.5/3.3W3) with ESMTP id AAA06108; Wed, 16 Jul 1997 00:20:54 +0900 (JST) To: Jun-ichiro Itoh Cc: cvs-committers@freebsd.org, cvs-all@freebsd.org, cvs-CVSROOT@freebsd.org Subject: Re: cvs commit: CVSROOT modules X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 References: <199707151501.IAA25961@freefall.freebsd.org> In-reply-to: Jun-ichiro Itoh 's message of Tue, 15 Jul 1997 08:01:54 -0700 (PDT). <199707151501.IAA25961@freefall.freebsd.org> X-Mailer: comp (MHng project) version 1997/04/30 02:23:09, by Jun-ichiro Itoh MIME-Version: 1.0 Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit Content-ID: Date: Wed, 16 Jul 1997 00:20:49 +0900 Message-ID: <6105.868980049@itojun.csl.sony.co.jp> Sender: owner-cvs-cvsroot@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >itojun 1997/07/15 08:01:54 PDT > > Modified files: > . modules > Log: > removing duplicate. > > the duplicate was made by "easy-import -n". > I'll make a check on this... I did the following: % easy-import -n dc3play % easy-import dc3play "cvs co modules" is performed on the first line, and modules/modules is modified to have a entry for "dc3play". On the second line, "cvs co modules" will be performed again, however, there will be no changes made. modules/modules is modified to have a entry for "dc3play", which will generate a duplicate. Here's a patch to prevent this. Could someone check this? itojun --- *** easy-import- Wed Jul 16 00:19:44 1997 --- easy-import Wed Jul 16 00:20:09 1997 *************** *** 373,379 **** "${modname} --> $area/${modpath}\" modules") && die "Commit failed\n"; ! system("cvs $dont_do_it -Q release -d modules"); } print "${so}Importing source. Enter a commit message in the editor.${se}\n"; --- 373,380 ---- "${modname} --> $area/${modpath}\" modules") && die "Commit failed\n"; ! # we always release "modules" to prevent duplicate ! system("cvs -Q release -d modules"); } print "${so}Importing source. Enter a commit message in the editor.${se}\n";