Record _Patool_configdata.py[co] during install.
This commit is contained in:
parent
03d2d130c1
commit
881513c6d0
5
setup.py
5
setup.py
|
@ -207,7 +207,10 @@ class MyInstallLib (install_lib, object):
|
||||||
def get_outputs (self):
|
def get_outputs (self):
|
||||||
"""Add the generated config file to the list of outputs."""
|
"""Add the generated config file to the list of outputs."""
|
||||||
outs = super(MyInstallLib, self).get_outputs()
|
outs = super(MyInstallLib, self).get_outputs()
|
||||||
outs.append(self.get_conf_output())
|
conf_output = self.get_conf_output()
|
||||||
|
outs.append(conf_output)
|
||||||
|
if self.compile:
|
||||||
|
outs.extend(self._bytecode_filenames([conf_output]))
|
||||||
return outs
|
return outs
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue