diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 01:04:21 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 01:07:40 -0500 |
commit | 80c2c2ee3e3039fb251bc6f5aa4b700f6c4ff3ea (patch) | |
tree | 04d8c70e2118115a0ba92e69c803a6e50c652b20 /sofort | |
parent | de823de7a882ebc2258db4a5dbd44e19aecd8faf (diff) | |
download | perk-80c2c2ee3e3039fb251bc6f5aa4b700f6c4ff3ea.tar.bz2 perk-80c2c2ee3e3039fb251bc6f5aa4b700f6c4ff3ea.tar.xz |
build system: ccenv: refined the os detection logic.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index 31b7dd5..c786f90 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -700,14 +700,19 @@ ccenv_set_os() case "$ccenv_cchost" in *-*-*-* ) - ccenv_tip=${ccenv_host%-*} + ccenv_tip=${ccenv_cchost%-*} ccenv_os=${ccenv_tip#*-*-} ;; - - *-*-* ) - ccenv_tip=${ccenv_host%-*} + *-*-musl | *-*-gnu ) + ccenv_tip=${ccenv_cchost%-*} ccenv_os=${ccenv_tip#*-} ;; + *-*-* ) + ccenv_os=${ccenv_cchost#*-*-} + ;; + *-* ) + ccenv_os=${ccenv_cchost#*-} + ;; esac if [ -z "$ccenv_os" ]; then |