diff options
author | emkael <emkael@tlen.pl> | 2015-10-09 21:36:03 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2015-10-09 21:36:03 +0200 |
commit | 9628dd97beb8d45df8ce897bc64af789be63c254 (patch) | |
tree | 8413ab5ccbe8431c0d2a4061e92959c45e7bd610 | |
parent | f752bad6a927c2e8347008a898414cee63f3a795 (diff) |
* spec file trimmed
-rw-r--r-- | rrb2txt.spec | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/rrb2txt.spec b/rrb2txt.spec index fb0c810..c7b33d7 100644 --- a/rrb2txt.spec +++ b/rrb2txt.spec @@ -1,17 +1,10 @@ -# -*- mode: python -*-
-
-block_cipher = None
-
-
+import os
a = Analysis(['rrb2txt.py'],
- pathex=['f:\\Brydz\\RRBridge'],
+ pathex=[os.path.abspath('.')],
hiddenimports=[],
hookspath=None,
- runtime_hooks=None,
- excludes=None,
- cipher=block_cipher)
-pyz = PYZ(a.pure,
- cipher=block_cipher)
+ runtime_hooks=None)
+pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
a.binaries,
|