diff options
author | midipix <writeonce@midipix.org> | 2019-01-03 00:17:59 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-03 00:18:58 -0500 |
commit | 4aabf7b12df24e43a71d3eaf9bcf260f714ccfe3 (patch) | |
tree | 8b97c8f78fdb64dd279f290da1c148fa5775dedd /sofort | |
parent | a40e0aa8c19acc3ec14bfca0c7974e3c7a493f9b (diff) | |
download | bfirm-4aabf7b12df24e43a71d3eaf9bcf260f714ccfe3.tar.bz2 bfirm-4aabf7b12df24e43a71d3eaf9bcf260f714ccfe3.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' |