diff options
author | midipix <writeonce@midipix.org> | 2019-01-03 00:17:59 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-03 00:17:59 -0500 |
commit | 5a5af6304bb06d96e25b966a29730641667b7e4f (patch) | |
tree | 507ed42e1d6c5a27810f3d6a73cc95caa135ea8d | |
parent | 88a8027c575d85057b40a05b9c2d7ed2c520a571 (diff) | |
download | sofort-5a5af6304bb06d96e25b966a29730641667b7e4f.tar.bz2 sofort-5a5af6304bb06d96e25b966a29730641667b7e4f.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' |