Remove pkgutils from setup.sh

This commit is contained in:
Jeremy Soller 2017-06-03 19:27:00 -06:00
parent d4b058bdda
commit c4b0a276b2
2 changed files with 1 additions and 7 deletions

View File

@ -194,7 +194,7 @@ function op {
echo "target = \"$TARGET\"" >> "stage.toml"
mkdir -p stage/pkg
cp -v stage.toml "stage/pkg/$1.toml"
cargo run --release --manifest-path "$ROOT/pkgutils/Cargo.toml" --bin pkg -- create stage
TARGET=x86_64-unknown-redox cargo run --release --manifest-path "$ROOT/pkgutils/Cargo.toml" --bin pkg -- create stage
;;
untar)
rm -rfv stage.tar stage.sig stage.toml

View File

@ -24,10 +24,4 @@ then
cargo install -f xargo
fi
echo "Building pkgutils"
pushd pkgutils
# TODO Change pkgutils to not hard code TARGET
TARGET=x86_64-unknown-redox cargo build --release
popd
echo "cook.sh is ready to use"