From 2c76506974a79ffe7841ba977759032ccf2045f8 Mon Sep 17 00:00:00 2001 From: Scott Duensing Date: Tue, 7 Nov 2023 19:06:38 -0600 Subject: [PATCH] Will not blindly try to reinstall DGJPP anymore. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 23d65db..9bffcef 100755 --- a/install.sh +++ b/install.sh @@ -143,11 +143,11 @@ function install_x86_dos() { git clone https://github.com/andrewwutw/build-djgpp.git work/build-djgpp fi - #if [[ ! -f x-tools/${PLATFORM}/toolchain.cmake ]]; then + if [[ ! -f x-tools/djgpp/setenv ]]; then pushd work/build-djgpp ./build-djgpp.sh 12.2.0 popd - #fi + fi }