diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-09-08 12:16:02 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-09-09 22:09:06 +0200 |
commit | c1e2e40b2cd8ef54473731101f1ef66310749861 (patch) | |
tree | 62a01c6a559552ea56eb4871f54f4ceaf53309a5 /scp2 | |
parent | 0ed6f8c28e88f892c70be066394feb71d846a945 (diff) |
scp2: fix Windows build: python wrapper is an executable there
Change-Id: I9e9c0eee26ead63c508ddcd0dead60395e461aa5
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/source/python/file_python.scp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/scp2/source/python/file_python.scp b/scp2/source/python/file_python.scp index 85c0a8e05476..e4d5336df41d 100644 --- a/scp2/source/python/file_python.scp +++ b/scp2/source/python/file_python.scp @@ -59,9 +59,15 @@ End #ifndef SYSTEM_PYTHON File gid_File_Py_Bin_Python BIN_FILE_BODY; +#ifdef WNT + Name = EXENAME(pyuno/python); + Dir = gid_Brand_Dir_Program; + Styles = (PACKED); +#else Name = "python_shell.filelist"; Dir = FILELIST_DIR; Styles = (FILELIST, PACKED); +#endif End #ifndef MACOSX |