Skip building uutils for now

This commit is contained in:
Jeremy Soller 2017-01-13 10:22:39 -07:00
parent 820c0f9fdf
commit 9befc6053e
2 changed files with 9 additions and 3 deletions

View File

@ -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

View File

@ -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
}