[Vm-dev] [commit] r2594 - check for platforms/.svn instead of unix/.svn when obtaining svn revision number

commits at squeakvm.org commits at squeakvm.org
Thu Sep 13 00:26:33 UTC 2012


Author: piumarta
Date: 2012-09-12 17:26:33 -0700 (Wed, 12 Sep 2012)
New Revision: 2594

Modified:
   trunk/platforms/unix/ChangeLog
   trunk/platforms/unix/cmake/configure
Log:
check for platforms/.svn instead of unix/.svn when obtaining svn revision number

Modified: trunk/platforms/unix/ChangeLog
===================================================================
--- trunk/platforms/unix/ChangeLog	2012-09-12 22:30:43 UTC (rev 2593)
+++ trunk/platforms/unix/ChangeLog	2012-09-13 00:26:33 UTC (rev 2594)
@@ -1,3 +1,9 @@
+2012-09-12  Ian Piumarta  <com -dot- gmail -at- piumarta (backwards)>
+
+	* cmake/configure: Check for platforms/.svn because
+	platforms/unix/.svn was removed by a repository upgrade for
+	compatibility with recent versions of svn.
+
 2012-07-30  Ian Piumarta  <com -dot- gmail -at- piumarta (backwards)>
 
 	* Version is 4.9.8-2562.

Modified: trunk/platforms/unix/cmake/configure
===================================================================
--- trunk/platforms/unix/cmake/configure	2012-09-12 22:30:43 UTC (rev 2593)
+++ trunk/platforms/unix/cmake/configure	2012-09-13 00:26:33 UTC (rev 2594)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# Last edited: 2010-04-10 19:38:50 by piumarta on ubuntu
+# Last edited: 2012-09-12 17:16:25 by piumarta on margaux1
 
 RELEASE_TAG=""
 
@@ -89,7 +89,7 @@
 
 vmmversion="`tr '\015 ' '\012\012' < \"${interp_h}\" | sed '1,/VMMaker/d;q'`"
 
-if test -d "${unix}/.svn"; then
+if test -d "${unix}/../.svn"; then
     svnversion=`svn info "${unix}/ChangeLog" | fgrep Revision: | awk '{print $2}'`
     echo "${svnversion}" > "${unix}/svnversion"
 else



More information about the Vm-dev mailing list