diff options
author | midipix <writeonce@midipix.org> | 2019-01-03 00:17:59 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-03 00:19:25 -0500 |
commit | b522af44cfd2da0e80992a2b595b77c9cbb45e86 (patch) | |
tree | 43c62f18df8eae1110e4a65d7dc6e0801d926477 /sofort/ccenv | |
parent | fc67fb448de12b2bcf1d6d15d849adb3dc8f94d5 (diff) | |
download | slibtool-b522af44cfd2da0e80992a2b595b77c9cbb45e86.tar.bz2 slibtool-b522af44cfd2da0e80992a2b595b77c9cbb45e86.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' |