diff options
author | midipix <writeonce@midipix.org> | 2019-01-03 00:17:59 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-03 00:19:21 -0500 |
commit | 98fb97e9c55bf0a8e2a97a9d5b76894878a54868 (patch) | |
tree | 8fbcd99724efd976a1805a5fe11480c8895668e4 | |
parent | 75f1da262705110de21e870cff9fb1f776ebff6f (diff) | |
download | ntcon-98fb97e9c55bf0a8e2a97a9d5b76894878a54868.tar.bz2 ntcon-98fb97e9c55bf0a8e2a97a9d5b76894878a54868.tar.xz |
build system: ccenv_set_os_pe_switches(): fix typo.
-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' |