Displaying 3 results from an estimated 3 matches for "edcccffa1".
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 13
1
Re: [PATCH v2 6/6] rust: fix list of generator-built files
On Thu, Dec 12, 2019 at 06:05:05PM +0100, Pino Toscano wrote:
> src/lib.rs is not created by the generator, while src/guestfs.rs is.
> ---
> rust/Makefile.am | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/rust/Makefile.am b/rust/Makefile.am
> index edcccffa1..cb16e021f 100644
> --- a/rust/Makefile.am
> +++ b/rust/Makefile.am
> @@ -19,7 +19,7 @@ include $(top_srcdir)/subdir-rules.mk
>
> generator_built = \
> src/bin/bindtests.rs \
> - src/lib.rs
> + src/guestfs.rs
>
> EXTRA_DIST = \
> $(generator_built) \
ACK...
2019 Dec 12
0
[PATCH v2 6/6] rust: fix list of generator-built files
src/lib.rs is not created by the generator, while src/guestfs.rs is.
---
rust/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rust/Makefile.am b/rust/Makefile.am
index edcccffa1..cb16e021f 100644
--- a/rust/Makefile.am
+++ b/rust/Makefile.am
@@ -19,7 +19,7 @@ include $(top_srcdir)/subdir-rules.mk
generator_built = \
src/bin/bindtests.rs \
- src/lib.rs
+ src/guestfs.rs
EXTRA_DIST = \
$(generator_built) \
--
2.23.0