diff options
author | midipix <writeonce@midipix.org> | 2018-12-23 04:50:45 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-23 04:50:45 -0500 |
commit | cf23d7ce6e94358a3ebf3adee2b332f5f6df85ed (patch) | |
tree | c5372320c92944d11081f3cf106c3f64634ca31b /project | |
parent | eb0b78fefb6c76189823e303a79de45419618a69 (diff) | |
download | sbpython3-cf23d7ce6e94358a3ebf3adee2b332f5f6df85ed.tar.bz2 sbpython3-cf23d7ce6e94358a3ebf3adee2b332f5f6df85ed.tar.xz |
project: config, cfghost.sh: simply & unify cfghost profiles (cf. ea008a7).
Diffstat (limited to 'project')
-rw-r--r-- | project/config/cfghost.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/project/config/cfghost.sh b/project/config/cfghost.sh index 8e9561e..c862e2b 100644 --- a/project/config/cfghost.sh +++ b/project/config/cfghost.sh @@ -20,11 +20,11 @@ cfghost_internal_test() if [ -z $mb_internal_cfghost ]; then case $mb_internal_cchost in - x86_64-*-linux | x86_64-*-linux-* | x86_64-linux-* ) - mb_internal_cfghost=x86_64-linux ;; + *-linux | *-linux-* ) + mb_internal_cfghost='linux' ;; - x86_64-*-midipix | x86_64-*-midipix-* | x86_64-midipix-* ) - mb_internal_cfghost=x86_64-midipix ;; + *-midipix | *-midipix-* ) + mb_internal_cfghost='midipix' ;; * ) mb_internal_cfghost='any-host' ;; |