diff options
author | midipix <writeonce@midipix.org> | 2017-11-23 03:38:48 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2017-11-23 15:43:28 -0500 |
commit | 98092929fca2033abb7e47a301cb4e8e0d439194 (patch) | |
tree | 1130a0095fced5c634ab6f5bf0cf5db8169d7231 /sysinfo/host | |
parent | 9789fb65563eee2bdf2382ab2df98140d9a7434a (diff) | |
download | ptycon-98092929fca2033abb7e47a301cb4e8e0d439194.tar.bz2 ptycon-98092929fca2033abb7e47a301cb4e8e0d439194.tar.xz |
build system: added --cchost support.
Diffstat (limited to 'sysinfo/host')
-rwxr-xr-x | sysinfo/host/host.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysinfo/host/host.sh b/sysinfo/host/host.sh index b3975ae..686edca 100755 --- a/sysinfo/host/host.sh +++ b/sysinfo/host/host.sh @@ -15,7 +15,7 @@ host_test() exit 2 fi - $mb_compiler -dM -E - < /dev/null > /dev/null && return 0 + $mb_compiler $mb_cflags -dumpmachine && return 0 error_msg "config error: invalid compiler." exit 2 |