Use cargo instead of xargo for relibc recipe

This commit is contained in:
Jeremy Soller 2021-07-14 12:18:51 -06:00
parent 0fc3effc1b
commit f848f9f87f
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1

View File

@ -1,12 +1,12 @@
GIT=https://gitlab.redox-os.org/redox-os/relibc.git
function recipe_build {
"$REDOX_MAKE" CARGO="env -u CARGO xargo" -j"$($NPROC)"
"$REDOX_MAKE" CARGO="env -u CARGO cargo" -j"$($NPROC)"
skip=1
}
function recipe_stage {
dest="$(realpath $1)"
"$REDOX_MAKE" CARGO="env -u CARGO xargo" DESTDIR="$dest" install
"$REDOX_MAKE" CARGO="env -u CARGO cargo" DESTDIR="$dest" install
skip=1
}