diff options
author | midipix <writeonce@midipix.org> | 2019-01-03 00:17:59 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-09 22:43:13 -0500 |
commit | 7bdc5be381a7a608ddb3923503e7daf80747f32f (patch) | |
tree | 7ee7f7c6ed46ebaaa2b4dafa1acbcfad2b685e2d /sofort/ccenv | |
parent | 9f05f20837b446ab1372d24f7ebc75d2766bdca8 (diff) | |
download | mmglue-7bdc5be381a7a608ddb3923503e7daf80747f32f.tar.bz2 mmglue-7bdc5be381a7a608ddb3923503e7daf80747f32f.tar.xz |
build system: ccenv_set_os_pe_switches(): fix typo.
Diffstat (limited to 'sofort/ccenv')
-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' |