mirror of
https://github.com/gbdev/rgbds.git
synced 2026-08-19 05:14:31 +00:00
libbet now uses `py -3` if the `py` binary exists, instead of if `COMSPEC` is defined. So we don't need to `unset COMSPEC`, we just need to avoid Windows' `py` launcher from being in Cygwin's `PATH`. It turns out that `C:\cygwin\bin\env.exe CYGWIN_NOWINPATH=1 ...` was not effectively preventing Windows' `PATH` from being inherited by Cygwin's `PATH`, because to take effect it needs to run Cygwin's `/etc/profile` script. The simple way to do that is using a login shell. So we don't need the `PREFIX`/`--prefix` from the previous commit after all.