summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2010-08-07 23:18:43 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2010-08-07 23:18:43 +0000
commit105c05bb7eb4f5394bcbd1dbe9845e952c830df3 (patch)
tree882be657faae1aac427616c11c784cc867b0c1d5 /Source/Core
parent521c7558bc007604024520a50c2705d12aa82cd7 (diff)
make_svnrev.h.vbs: look for "Last committed at revision [0-9]+" instead of "Updated to revision [0-9]+" for svn
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6066 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Common/make_svnrev.h.vbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/make_svnrev.h.vbs b/Source/Core/Common/make_svnrev.h.vbs
index 76d04a7f84..a85108af6a 100644
--- a/Source/Core/Common/make_svnrev.h.vbs
+++ b/Source/Core/Common/make_svnrev.h.vbs
@@ -23,7 +23,7 @@ do while testexec.status = 0 : wscript.sleep 100 : loop
if testexec.exitcode = 0 then
testout = testexec.stdout.readall
set re = new regexp
- re.pattern = "Updated to revision [0-9]+"
+ re.pattern = "Last committed at revision [0-9]+"
cur_rev = split(re.execute(testout)(0))(3)
cur_cms = svn
else