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:
parent
5123ece26a
commit
02527b21ff
|
@ -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()
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#define SVN_REV $WCREV$
|
||||
#define SVN_REV_STR $WCMODS?"$WCREV$M":"$WCREV$"$
|
||||
#define SVN_REV_STR "$WCMODS?$WCREV$M:$WCREV$$"
|
||||
|
|
Loading…
Reference in New Issue