From 8def2e1e1b89eb1287dd8d9f7aa681c748b19104 Mon Sep 17 00:00:00 2001 From: Gris Ge Date: Sun, 12 Mar 2023 14:02:26 +0800 Subject: [PATCH] Fix %cargo_install failure cargo_install has problem on detecting library when running in workspace due to bug https://pagure.io/fedora-rust/cargo2rpm/issue/5 Removing the workspace Cargo.toml will workaround this problem. Signed-off-by: Gris Ge --- nispor.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nispor.spec b/nispor.spec index 2406c71..b0cefa0 100644 --- a/nispor.spec +++ b/nispor.spec @@ -89,6 +89,10 @@ pushd src/python popd %install +# cargo_install has problem on detecting library when running in workspace +# due to bug https://pagure.io/fedora-rust/cargo2rpm/issue/5 +# Removing the workspace Cargo.toml will workaround this problem. +rm Cargo.toml pushd src/lib %cargo_install popd