lp's fix for bundle name

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4461 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nakeee 2009-10-24 20:29:52 +00:00
parent 5123ece26a
commit 02527b21ff
2 changed files with 3 additions and 3 deletions

View File

@ -149,8 +149,8 @@ def GenerateRevFile(flavour, template, output):
except:
svnrev = ""
revstr = '"' + svnrev + "-" + flavour + '"'
tmpstr = open(template, "r").read().replace("$WCMODS?\"$WCREV$M\":\"$WCREV$\"$",revstr)
revstr = svnrev + "-" + flavour
tmpstr = open(template, "r").read().replace("$WCMODS?$WCREV$M:$WCREV$$",revstr)
outfile = open(output, 'w')
outfile.write(tmpstr +"\n")
outfile.close()

View File

@ -1,2 +1,2 @@
#define SVN_REV $WCREV$
#define SVN_REV_STR $WCMODS?"$WCREV$M":"$WCREV$"$
#define SVN_REV_STR "$WCMODS?$WCREV$M:$WCREV$$"