Skip to content
Snippets Groups Projects
Commit 9befc605 authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Skip building uutils for now

parent 820c0f9f
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
export TARGET=x86_64-unknown-redox export TARGET=x86_64-unknown-redox
# Automatic variables # Automatic variables
ROOT="$PWD" ROOT="$(cd `dirname "$0"` && pwd)"
REPO="$ROOT/repo/$TARGET" REPO="$ROOT/repo/$TARGET"
export CC="$ROOT/libc-artifacts/gcc.sh" export CC="$ROOT/libc-artifacts/gcc.sh"
...@@ -148,9 +148,9 @@ function op { ...@@ -148,9 +148,9 @@ function op {
if [ -n "$1" ] if [ -n "$1" ]
then then
if [ -d "recipes/$1" ] if [ -d "$ROOT/recipes/$1" ]
then then
cd "recipes/$1" cd "$ROOT/recipes/$1"
source recipe.sh source recipe.sh
for arg in "${@:2}" for arg in "${@:2}"
do do
......
GIT=https://github.com/uutils/coreutils.git GIT=https://github.com/uutils/coreutils.git
CARGOFLAGS="--no-default-features --features=generic"
function recipe_build {
echo "Skipping build of uutils"
return 1
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment