diff options
author | V3n3RiX <venerix@koprulu.sector> | 2025-04-05 01:34:33 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2025-04-05 01:34:33 +0100 |
commit | 8bcae5a5a332db9dc28c20b7a5f28337d8335254 (patch) | |
tree | f5e955d5d9283743bda70a7d99a915db594b8a50 /eclass | |
parent | 74dcbf5a63cafe2678e2a397e1002dd691425200 (diff) |
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/Manifest.gz | bin | 40349 -> 40342 bytes | |||
-rw-r--r-- | eclass/cargo.eclass | 8 |
2 files changed, 4 insertions, 4 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz Binary files differindex 90bef7d7e4e5..e47a3bec9726 100644 --- a/eclass/Manifest.gz +++ b/eclass/Manifest.gz diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass index 95d485ab20c3..d93ae1723470 100644 --- a/eclass/cargo.eclass +++ b/eclass/cargo.eclass @@ -603,12 +603,12 @@ cargo_live_src_unpack() { export CARGO_HOME="${ECARGO_REGISTRY_DIR}" # Absence of quotes around offline arg is intentional, as cargo bails out if it encounters '' - einfo "cargo fetch ${offline:+--offline}" - cargo fetch ${offline:+--offline} || die #nowarn + einfo "${CARGO} fetch ${offline:+--offline}" + "${CARGO}" fetch ${offline:+--offline} || die #nowarn # Let cargo copy all required crates to "${WORKDIR}" for offline use in later phases. - einfo "cargo vendor ${offline:+--offline} ${ECARGO_VENDOR}" - cargo vendor ${offline:+--offline} "${ECARGO_VENDOR}" || die #nowarn + einfo "${CARGO} vendor ${offline:+--offline} ${ECARGO_VENDOR}" + "${CARGO}" vendor ${offline:+--offline} "${ECARGO_VENDOR}" || die #nowarn # Users may have git checkouts made by cargo. # While cargo vendors the sources, it still needs git checkout to be present. |