diff options
| author | Daniel Kahn Gillmor <dkg@fifthhorseman.net> | 2020-05-21 21:03:59 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2020-05-30 12:42:14 -0300 |
| commit | ef0ab496b3f1e3a85f08102e3aaf251f4af69fd3 (patch) | |
| tree | edd2c22d529e86107553bf2fe6aa278bbb42a8f2 /configure | |
| parent | c9e55a712e1ab4d5e84ba15d07d094865e72ffa1 (diff) | |
python-cffi: enable out-of-tree builds
This is a simple hack to enable out-of-tree builds, a concern raised
by Tomi in id:m24kzjib9a.fsf@guru.guru-group.fi
This change at least enables "make check" to complete without error,
but I'm sure it could be improved. I am not expert enough in
setuptools to know how.
Signed-off-by: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Amended by db per id:87d06usa31.fsf@powell.devork.be
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -70,6 +70,14 @@ if [ "$srcdir" != "." ]; then mkdir bindings/ruby cp -a "$srcdir"/bindings/ruby/*.[ch] bindings/ruby cp -a "$srcdir"/bindings/ruby/extconf.rb bindings/ruby + + # Use the same hack to replicate python-cffi source for + # out-of-tree builds (again, not ideal). + mkdir bindings/python-cffi + cp -a "$srcdir"/bindings/python-cffi/tests \ + "$srcdir"/bindings/python-cffi/notmuch2 \ + "$srcdir"/bindings/python-cffi/setup.py \ + bindings/python-cffi/ fi # Set several defaults (optionally specified by the user in |
