diff options
author | James Laska <jlaska@ansible.com> | 2014-10-18 20:40:43 +0200 |
---|---|---|
committer | James Laska <jlaska@ansible.com> | 2014-10-18 20:40:43 +0200 |
commit | 3512b93c17f424cbed308e3bda051a2549f8713e (patch) | |
tree | e0168723340acf7db09156a7927482c260dc94d8 /setup.py | |
parent | Correct variable typo in Makefile (diff) | |
download | awx-3512b93c17f424cbed308e3bda051a2549f8713e.tar.xz awx-3512b93c17f424cbed308e3bda051a2549f8713e.zip |
Disable pre-byte-compiling .py files for debian builds
Also includes:
* Override pysupport build and install arguments
* Increase verbosity when logging install_lib changes
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -155,7 +155,7 @@ class install_lib(_install_lib, object): log.debug('install_lib skipping: %s', f) continue if f.endswith('.py'): - log.debug('install_lib removing: %s', f) + log.info('install_lib removing: %s', f) os.unlink(f) def get_outputs(self): |