diff options
author | midipix <writeonce@midipix.org> | 2019-01-03 00:17:59 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-03 00:19:22 -0500 |
commit | 9a7d8a0ae1fa718663e6aab25f348bd1c932dda2 (patch) | |
tree | 5f2f0857b508e3c9ce512e14c9f2944bd9e49c57 /sofort | |
parent | 6598d3f22d731a0cf3a4af91c359b1dac46338d2 (diff) | |
download | pemagine-9a7d8a0ae1fa718663e6aab25f348bd1c932dda2.tar.bz2 pemagine-9a7d8a0ae1fa718663e6aab25f348bd1c932dda2.tar.xz |
build system: ccenv_set_os_pe_switches(): fix typo.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 83b5daa..a8955fb 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -905,7 +905,7 @@ ccenv_set_os_dso_patterns() ccenv_set_os_pe_switches() { - if [ "$ccenv_os" = 'PE' ] && [ -z "$ccenv_pe_subsystem" ]; then + if [ "$ccenv_cc_binfmt" = 'PE' ] && [ -z "$ccenv_pe_subsystem" ]; then case "$ccenv_os" in midipix | mingw ) ccenv_pe_subsystem='windows' |