summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorrideout <rideout@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-11-25 10:32:00 +0000
committerrideout <rideout@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-11-25 10:32:00 +0000
commit2521959be8099f9029054c38a2ac544089fce673 (patch)
tree8a5f347eb3dca044bab1c3106a5b864e2b8f4fee /lib
parentc803e537c922b88044fa4a459f671a8936f13b76 (diff)
Update arrangements/README as well. It would be nice to do an
'update -l' on arrangements (in case anyone adds another file there), but this does not seem to fit well within the current code. Right now it doesn't seem worth the hassle to add it. Added some 'my's. git-svn-id: http://svn.cactuscode.org/flesh/trunk@3033 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib')
-rw-r--r--lib/sbin/CVSUpdate.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/sbin/CVSUpdate.pl b/lib/sbin/CVSUpdate.pl
index 4f036459..fea04c81 100644
--- a/lib/sbin/CVSUpdate.pl
+++ b/lib/sbin/CVSUpdate.pl
@@ -9,10 +9,10 @@
# @version $Header$
#@@*/
-$cvs_ops="-z6 -q";
-$cvs_update_ops="-d -P";
+my $cvs_ops="-z6 -q";
+my $cvs_update_ops="-d -P";
# Set this to eg -r TAGNAME checkout from a TAG
-$cvs_symbolic_name="";
+my $cvs_symbolic_name="";
require "lib/sbin/MakeUtils.pl";
@@ -23,7 +23,7 @@ if ($debug)
}
print("\nUpdating Flesh\n");
-$command = "cvs $cvs_ops update $cvs_update_ops $cvs_symbolic_name CONTRIBUTORS COPYRIGHT Makefile lib doc src";
+$command = "cvs $cvs_ops update $cvs_update_ops $cvs_symbolic_name CONTRIBUTORS COPYRIGHT Makefile lib doc src arrangements/README";
if ($debug)
{
$this_dir = `pwd`;