From 0dffee72de8ad4100925831d5afefad058455126 Mon Sep 17 00:00:00 2001 From: Kyle Schwarz Date: Wed, 5 Aug 2020 13:22:25 -0400 Subject: Bash doesn't need variables defined --- mingw-w64-build | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/mingw-w64-build b/mingw-w64-build index dc7a84f..2679784 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -121,11 +121,14 @@ build_toolchain() local prefix="$wd/$host" export PATH="$prefix/bin:$PATH" - i686_dwarf2="" if [[ "$1" = "i686" ]]; then i686_dwarf2="--disable-sjlj-exceptions --with-dwarf2" fi + if [[ "$pthreads" = true ]]; then + enable_threads="--enable-threads=posix" + fi + rm -fr "$prefix" clean_build "$bld/binutils" @@ -147,10 +150,6 @@ build_toolchain() cd "$prefix" || error_exit ln -s "./$host" "./mingw" || error_exit - if [[ "$pthreads" = true ]]; then - enable_threads="--enable-threads=posix" - fi - clean_build "$bld/gcc" echo "configuring gcc" >&3 "../../src/gcc-$v_gcc/configure" --target="$host" --disable-shared \ -- cgit v1.2.3