From: Erik Schilling Date: Mon, 12 Jun 2023 11:14:49 +0000 (+0200) Subject: bindings: rust: exclude Makefile.am from package X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=bce8623776fb083561d9f85c01020810ff7273d0;p=qemu-gpiodev%2Flibgpiod.git bindings: rust: exclude Makefile.am from package We do not use those when building from crates.io. Signed-off-by: Erik Schilling Acked-by: Viresh Kumar Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/rust/libgpiod-sys/Cargo.toml b/bindings/rust/libgpiod-sys/Cargo.toml index 8b17039..0c814ee 100644 --- a/bindings/rust/libgpiod-sys/Cargo.toml +++ b/bindings/rust/libgpiod-sys/Cargo.toml @@ -14,6 +14,10 @@ keywords = ["libgpiod", "gpio"] license = "Apache-2.0 OR BSD-3-Clause" edition = "2021" +exclude = [ + "Makefile.am", +] + [dependencies] [build-dependencies] diff --git a/bindings/rust/libgpiod/Cargo.toml b/bindings/rust/libgpiod/Cargo.toml index b19e888..d6758be 100644 --- a/bindings/rust/libgpiod/Cargo.toml +++ b/bindings/rust/libgpiod/Cargo.toml @@ -14,6 +14,10 @@ keywords = ["libgpiod", "gpio"] license = "Apache-2.0 OR BSD-3-Clause" edition = "2021" +exclude = [ + "Makefile.am", +] + [dependencies] errno = "0.2.8" intmap = "2.0.0"