summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authoritojun <itojun@FreeBSD.org>1997-07-15 16:48:01 +0000
committeritojun <itojun@FreeBSD.org>1997-07-15 16:48:01 +0000
commit245797ff55f2b110add3004d133b9cb7535cb219 (patch)
tree643351860b4735960f9070d1906290067ac16cf9 /gnu
parentb0cd70269bdbc7d376cca5f2305de0b40fdd566f (diff)
downloadFreeBSD-src-245797ff55f2b110add3004d133b9cb7535cb219.zip
FreeBSD-src-245797ff55f2b110add3004d133b9cb7535cb219.tar.gz
small change to prevent "modules" to be modified twice, on the following
execution sequences: % easy-import -n foobaa % easy-import foobaa Reviewed by: joerg_wunsch@uriah.heep.sax.de
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/cvs/contrib/easy-import.pl7
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/usr.bin/cvs/contrib/easy-import.pl b/gnu/usr.bin/cvs/contrib/easy-import.pl
index 9caba25..4a13714 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.12 1997/02/22 15:45:12 peter Exp $
+# $Id: easy-import.pl,v 1.13 1997/06/09 10:08:07 jmg 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.12 $' . "\n"; # 'emacs kludge
+ print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.13 $' . "\n"; # 'emacs kludge
exit 0;
}
die "usage: $0 [-v] [-n] [moduledir]\n" .
@@ -374,7 +374,8 @@ if (!$branchimport) {
"${modname} --> $area/${modpath}\" modules")
&& die "Commit failed\n";
- system("cvs $dont_do_it -Q release -d modules");
+ # 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";
OpenPOWER on IntegriCloud