summaryrefslogtreecommitdiff
path: root/infrastructure/makedistribution.pl
diff options
context:
space:
mode:
authorBen Summers <ben@fluffy.co.uk>2006-02-13 13:42:38 +0000
committerBen Summers <ben@fluffy.co.uk>2006-02-13 13:42:38 +0000
commit1ecc0c9056fdec525207acb21db88260f6622efa (patch)
treef853adf022d67fef93bdd907173c78a552d70c72 /infrastructure/makedistribution.pl
parentab0b336a656d168d132f685ead24c0c18df4a612 (diff)
Update copyright notice, add SVN revision to distributed files
Diffstat (limited to 'infrastructure/makedistribution.pl')
-rwxr-xr-xinfrastructure/makedistribution.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/infrastructure/makedistribution.pl b/infrastructure/makedistribution.pl
index 823aba38..22057959 100755
--- a/infrastructure/makedistribution.pl
+++ b/infrastructure/makedistribution.pl
@@ -47,7 +47,9 @@ open LICENSE,"$dist_root/LICENSE.txt" or die "Can't open $dist_root/LICENSE.txt"
my $license_f;
read LICENSE,$license_f,100000;
close LICENSE;
-my @license = ('distribution '.$base_name,'',split(/\n/,$license_f));
+my $svnversion = `svnversion .`;
+chomp $svnversion;
+my @license = ('distribution '.$base_name.' (svn version: '.$svnversion.')',split(/\n/,$license_f));
# copy files, make a note of all the modules included
my %modules_included;