aboutsummaryrefslogtreecommitdiff
path: root/gnu/usr.bin/cvs
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1996-01-02 07:39:03 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1996-01-02 07:39:03 +0000
commit9f5ae2b97bca9cdb0016f4c15b6b33de87006401 (patch)
tree7e49b530eef4c34828325e043cb5b0d0d8ad27a3 /gnu/usr.bin/cvs
parent18e73f4fb6967ee696a9b2fea69e9b1c3467211d (diff)
Notes
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r--gnu/usr.bin/cvs/contrib/easy-import.pl8
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 42c4b9b6d4ad8..7bcfc398895a1 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.3 1995/07/23 17:34:00 joerg Exp $
+# $Id: easy-import.pl,v 1.4 1995/12/11 00:45:43 peter 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.3 $' . "\n"; # 'emacs kludge
+ print STDERR '$Source: /home/ncvs/src/gnu/usr.bin/cvs/contrib/easy-import.pl,v $ $Revision: 1.4 $' . "\n"; # 'emacs kludge
exit 0;
}
die "usage: $0 [-v] [-n] [moduledir]\n" .
@@ -364,7 +364,7 @@ system("cvs $dont_do_it commit -m \" " .
"${modname} --> $area/${modpath}\" modules")
&& die "Commit failed\n";
-system("cvs $dont_do_it release -dQ modules");
+system("cvs $dont_do_it -Q release -d modules");
print "${so}Importing source. Enter a commit message in the editor.${se}\n";
@@ -381,7 +381,7 @@ print <<END
${so}Since you did not allow to commit anything, you'll have${se}
${so}to remove the edited modules' database yourself.${se}
${so}To do this, perform a${se}
-${us}cd ${moduledir}; cvs release -dQ modules${ue}
+${us}cd ${moduledir}; cvs -Q release -d modules${ue}
${so}command.${se}
END
;