Add mode-line to .spec files

git-svn-id: http://svn.pyinstaller.org/trunk@477 8dd32b29-ccff-0310-8a9a-9233e24343b1
This commit is contained in:
htgoebel
2008-07-23 18:33:07 +00:00
parent e092a005da
commit 2d8acefd32
+3 -3
View File
@@ -25,7 +25,7 @@ try:
except:
True,False = 1,0
freezetmplt = """\
freezetmplt = """# -*- mode: python -*-
a = Analysis(%(scripts)s,
pathex=%(pathex)s)
pyz = PYZ(a.pure)
@@ -40,7 +40,7 @@ exe = EXE(%(tkpkg)s pyz,
console=%(console)s %(exe_options)s)
""" # pathex scripts exename tkpkg debug console
collecttmplt = """\
collecttmplt = """# -*- mode: python -*-
a = Analysis(%(scripts)s,
pathex=%(pathex)s)
pyz = PYZ(a.pure)
@@ -60,7 +60,7 @@ coll = COLLECT(%(tktree)s exe,
name='%(distdir)s')
""" # scripts pathex, exename, debug, console tktree distdir
comsrvrtmplt = """\
comsrvrtmplt = """# -*- mode: python -*-
a = Analysis(%(scripts)s,
pathex=%(pathex)s)
pyz = PYZ(a.pure)