search for: 979e98bd4

Displaying 2 results from an estimated 2 matches for "979e98bd4".

2019 Dec 12
8
[PATCH v2 0/6] Various small build fixes
*** BLURB HERE? *** Pino Toscano (6): build: stop shipping files generated by configure docs: fix out-of-source documentation build generator: do not generate mlv2v files when not needed perl: fix path to Build.PL rust: fix path to lib.rs rust: fix list of generator-built files daemon/Makefile.am | 8 ++++++-- docs/Makefile.am | 4 ++-- generator/main.ml | 11
2019 Dec 12
0
[PATCH v2 1/6] build: stop shipping files generated by configure
....9aca202b5 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -38,8 +38,9 @@ EXTRA_DIST = \ setup.py.in \ run-bindtests \ run-python-tests \ + t/__init__.py \ t/README \ - t/*.py + t/test[0-9]*.py if HAVE_PYTHON diff --git a/rust/Makefile.am b/rust/Makefile.am index c96607621..979e98bd4 100644 --- a/rust/Makefile.am +++ b/rust/Makefile.am @@ -26,7 +26,6 @@ EXTRA_DIST = \ tests/*.rs \ src/*.rs \ src/bin/*.rs \ - Cargo.toml \ README.md \ run-bindtests \ run-tests diff --git a/tests/daemon/Makefile.am b/tests/daemon/Makefile.am index 053cad3e1..921e6d1df 100644 --- a/test...