[Box Backup-commit] COMMIT r2926 - box/trunk/infrastructure/msvc

subversion at boxbackup.org subversion at boxbackup.org
Sat Apr 16 18:09:40 BST 2011


Author: chris
Date: 2011-04-16 18:09:39 +0100 (Sat, 16 Apr 2011)
New Revision: 2926

Modified:
   box/trunk/infrastructure/msvc/getversion.pl
Log:
Remove redundant copy of the version string from getversion.pl.


Modified: box/trunk/infrastructure/msvc/getversion.pl
===================================================================
--- box/trunk/infrastructure/msvc/getversion.pl	2011-04-16 11:05:33 UTC (rev 2925)
+++ box/trunk/infrastructure/msvc/getversion.pl	2011-04-16 17:09:39 UTC (rev 2926)
@@ -22,8 +22,9 @@
 {
 	open VERSIONFILE, "> $basedir/lib/common/BoxVersion.h" 
 		or die "BoxVersion.h: $!";
-	print VERSIONFILE "#define BOX_VERSION \"$BoxPlatform::product_version\"\n";
+	print VERSIONFILE $newver;
 	close VERSIONFILE;
 }
 
+print $BoxPlatform::product_version;
 exit 0;




More information about the Boxbackup-commit mailing list