mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-24 05:44:17 +08:00
Skip building uutils for now
This commit is contained in:
parent
820c0f9fdf
commit
9befc6053e
6
cook.sh
6
cook.sh
@ -4,7 +4,7 @@
|
||||
export TARGET=x86_64-unknown-redox
|
||||
|
||||
# Automatic variables
|
||||
ROOT="$PWD"
|
||||
ROOT="$(cd `dirname "$0"` && pwd)"
|
||||
REPO="$ROOT/repo/$TARGET"
|
||||
export CC="$ROOT/libc-artifacts/gcc.sh"
|
||||
|
||||
@ -148,9 +148,9 @@ function op {
|
||||
|
||||
if [ -n "$1" ]
|
||||
then
|
||||
if [ -d "recipes/$1" ]
|
||||
if [ -d "$ROOT/recipes/$1" ]
|
||||
then
|
||||
cd "recipes/$1"
|
||||
cd "$ROOT/recipes/$1"
|
||||
source recipe.sh
|
||||
for arg in "${@:2}"
|
||||
do
|
||||
|
||||
@ -1 +1,7 @@
|
||||
GIT=https://github.com/uutils/coreutils.git
|
||||
CARGOFLAGS="--no-default-features --features=generic"
|
||||
|
||||
function recipe_build {
|
||||
echo "Skipping build of uutils"
|
||||
return 1
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user