diff options
author | midipix <writeonce@midipix.org> | 2018-12-23 04:50:45 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-23 04:52:47 -0500 |
commit | 2e8fd90a02ce0fd1c0a700cc134a51a0f7629c27 (patch) | |
tree | 10ab9b890fd141fe33e232eb4db05fd975fe7e85 /project | |
parent | 127aed6c081cf972e0e5f50683027fc3ab31a8ef (diff) | |
download | sbpython2-2e8fd90a02ce0fd1c0a700cc134a51a0f7629c27.tar.bz2 sbpython2-2e8fd90a02ce0fd1c0a700cc134a51a0f7629c27.tar.xz |
project: config, cfghost.sh: simply & unify cfghost profiles (cf. cad286e).
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' ;; |