[Box Backup-dev] COMMIT r292 - in box/trunk: distribution distribution/boxbackup infrastructure
boxbackup-dev@fluffy.co.uk
boxbackup-dev@fluffy.co.uk
Wed, 28 Dec 2005 14:04:37 +0000 (GMT)
Author: martin
Date: 2005-12-28 14:04:35 +0000 (Wed, 28 Dec 2005)
New Revision: 292
Modified:
box/trunk/distribution/COMMON-MANIFEST.txt
box/trunk/distribution/boxbackup/DISTRIBUTION-MANIFEST.txt
box/trunk/infrastructure/makedistribution.pl
Log:
Fix make distribution
Modified: box/trunk/distribution/COMMON-MANIFEST.txt
===================================================================
--- box/trunk/distribution/COMMON-MANIFEST.txt 2005-12-28 13:32:17 UTC (rev 291)
+++ box/trunk/distribution/COMMON-MANIFEST.txt 2005-12-28 14:04:35 UTC (rev 292)
@@ -15,10 +15,15 @@
MKDIR infrastructure
infrastructure/buildenv-testmain-template.cpp
infrastructure/makebuildenv.pl
-infrastructure/BoxPlatform.pm
+infrastructure/BoxPlatform.pm.in
infrastructure/makeparcels.pl
-MKDIR infrastructure/tests
-infrastructure/tests/common_tests.pl
+configure.ac
+NO-LICENSE config.sub
+config.sub
+NO-LICENSE config.guess
+config.guess
+bootstrap
parcels.txt
-configure
runtest.pl
+NO-LICENSE-IN-DIR infrastructure/m4
+infrastructure/m4
Modified: box/trunk/distribution/boxbackup/DISTRIBUTION-MANIFEST.txt
===================================================================
--- box/trunk/distribution/boxbackup/DISTRIBUTION-MANIFEST.txt 2005-12-28 13:32:17 UTC (rev 291)
+++ box/trunk/distribution/boxbackup/DISTRIBUTION-MANIFEST.txt 2005-12-28 14:04:35 UTC (rev 292)
@@ -3,9 +3,11 @@
test/raidfile/testfiles
lib/backupclient
lib/backupstore
+lib/win32
bin/bbstored
bin/bbstoreaccounts
bin/bbackupd
+bin/bbackupd/win32
bin/bbackupquery
bin/bbackupctl
bin/bbackupobjdump
Modified: box/trunk/infrastructure/makedistribution.pl
===================================================================
--- box/trunk/infrastructure/makedistribution.pl 2005-12-28 13:32:17 UTC (rev 291)
+++ box/trunk/infrastructure/makedistribution.pl 2005-12-28 14:04:35 UTC (rev 292)
@@ -78,6 +78,10 @@
{
replace_version_in($dst);
}
+ elsif($src eq 'NO-LICENSE')
+ {
+ $no_license{$dst} = 1;
+ }
elsif(-d $src)
{
$modules_included{$_} = 1;
@@ -205,8 +209,8 @@
}
}
- # make sure perl scripts are marked as executable, and other things aren't
- if($ext eq 'pl' || $ext eq '')
+ # copy executable bit from src
+ if(-x $fn)
{
system 'chmod','a+x',"$base_name/$dst_fn"
}