Commit ed5fe7bf authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 4870e511
......@@ -179,6 +179,7 @@ def viamake(target, help_text):
# build_ext that
# - builds via Makefile (and thus pre-builds ccan) XXX hacky
# - integrates built wcfs/wcfs.go into python packaging
class build_ext(_build_ext):
def run(self):
......@@ -186,6 +187,7 @@ class build_ext(_build_ext):
_build_ext.run(self)
# copy wcfs/wcfs built from wcfs.go by make into build/lib.linux-x86_64-2.7/...
# so that py packaging tools see built wcfs.go as part of wendelin/wcfs package.
copy_file('wcfs/wcfs', os.path.join(self.build_lib, 'wendelin/wcfs/wcfs'),
verbose=self.verbose, dry_run=self.dry_run)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment