Browse Source

fix tab/space issue..

master
John-Mark Gurney 7 years ago
parent
commit
c0297e395e
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      python/setup.py

+ 3
- 3
python/setup.py View File

@@ -8,9 +8,9 @@ import os
class my_build(build):
def run(self):
build.run(self)
if not self.dry_run:
os.spawnlp(os.P_WAIT, 'sh', 'sh', '-c', 'cd .. && gmake lib')
self.copy_file(os.path.join('..', 'build', 'lib', 'libdecaf.so'), os.path.join(self.build_lib, 'edgold'))
if not self.dry_run:
os.spawnlp(os.P_WAIT, 'sh', 'sh', '-c', 'cd .. && gmake lib')
self.copy_file(os.path.join('..', 'build', 'lib', 'libdecaf.so'), os.path.join(self.build_lib, 'edgold'))

cmdclass = {}
cmdclass['build'] = my_build


Loading…
Cancel
Save