[Box Backup-dev] COMMIT r415 - box/trunk/infrastructure

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Sat, 11 Feb 2006 08:46:35 +0000 (GMT)


Author: ben
Date: 2006-02-11 08:46:34 +0000 (Sat, 11 Feb 2006)
New Revision: 415

Modified:
   box/trunk/infrastructure/makeparcels.pl
Log:
Remove extra version number on OpenBSD -- functionality provided elsewhere

Modified: box/trunk/infrastructure/makeparcels.pl
===================================================================
--- box/trunk/infrastructure/makeparcels.pl	2006-02-11 02:42:50 UTC (rev 414)
+++ box/trunk/infrastructure/makeparcels.pl	2006-02-11 08:46:34 UTC (rev 415)
@@ -4,13 +4,6 @@
 use lib 'infrastructure';
 use BoxPlatform;
 
-my $os_suffix = '';
-if($build_os eq 'OpenBSD')
-{
-	$os_suffix = `uname -r`;
-	$os_suffix =~ tr/0-9//cd;
-}
-
 my @parcels;
 my %parcel_contents;
 
@@ -169,7 +162,7 @@
 
 sub parcel_root
 {
-	$product_name.'-'.$product_version.'-'.$_[0].'-'.$target_os.$os_suffix
+	$product_name.'-'.$product_version.'-'.$_[0].'-'.$target_os
 }
 
 sub parcel_dir