From 1f30f70eeb84770c5411c61243e5421ee9ee819f Mon Sep 17 00:00:00 2001 From: Tomas Tauber <2410580+tomtau@users.noreply.github.com> Date: Tue, 2 Aug 2022 22:42:12 +0800 Subject: [PATCH] pest: fix build failure (#8127) cleared RUSTFLAGS for bootstrap closes https://github.com/pest-parser/pest/issues/676 --- projects/pest/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/pest/build.sh b/projects/pest/build.sh index a572d27ea..6bf6bf0b4 100644 --- a/projects/pest/build.sh +++ b/projects/pest/build.sh @@ -14,10 +14,10 @@ # ################################################################################ cd $SRC/pest/meta -cargo bootstrap +RUSTFLAGS="" cargo bootstrap cargo +nightly fuzz build cd $SRC/pest/grammars cargo +nightly fuzz build cp $SRC/pest/meta/fuzz/target/x86_64-unknown-linux-gnu/release/parser $OUT/ cp $SRC/pest/grammars/fuzz/target/x86_64-unknown-linux-gnu/release/toml $OUT/ -cp $SRC/pest/grammars/fuzz/target/x86_64-unknown-linux-gnu/release/json $OUT/ \ No newline at end of file +cp $SRC/pest/grammars/fuzz/target/x86_64-unknown-linux-gnu/release/json $OUT/