diff options
author | midipix <writeonce@midipix.org> | 2018-12-30 19:34:08 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-30 19:37:21 -0500 |
commit | 1106be19794c0e8321bd36f86c0c79aa7e3264ac (patch) | |
tree | 30ace46a9b333cb6da49ce0a777bee3009d47a4e | |
parent | 1a1e1574a67cd21782b7e5676da5b0d03c6162b3 (diff) | |
download | ntcon-1106be19794c0e8321bd36f86c0c79aa7e3264ac.tar.bz2 ntcon-1106be19794c0e8321bd36f86c0c79aa7e3264ac.tar.xz |
build system: ccenv: fix detection of native os.
-rw-r--r-- | sofort/ccenv/ccenv.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 91d9309..354dd90 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -284,6 +284,8 @@ ccenv_set_cc() ccenv_cc_cmd="$ccenv_cc" if [ "$ccenv_cfgtype" = 'native' ]; then + ccenv_host=$($ccenv_cc $ccenv_cflags -dumpmachine 2>/dev/null) + ccenv_cchost=$ccenv_host return 0 fi @@ -947,6 +949,7 @@ ccenv_common_init() ccenv_cfgtype=$1 ccenv_cfgfile="$mb_pwd/ccenv/$ccenv_cfgtype.mk" ccenv_freestd= + ccenv_cchost= if [ $ccenv_cfgtype = 'native' ]; then ccenv_makevar_prefix='NATIVE_' |