abuild: remove CBUILDROOT check for cross_*

CBUILDROOT is guaranteed to be set by functions.sh when
CHOST != CTARGET or CBUILD != CHOST.
This commit is contained in:
Sertonix 2024-04-26 23:30:39 +02:00
parent a45d12d4c3
commit ff40fdcf3b
1 changed files with 2 additions and 2 deletions

View File

@ -99,11 +99,11 @@ amove() {
}
cross_creating() {
test "$CHOST" != "$CTARGET" -a -n "$CBUILDROOT"
test "$CHOST" != "$CTARGET"
}
cross_compiling() {
test "$CBUILD" != "$CHOST" -a -n "$CBUILDROOT"
test "$CBUILD" != "$CHOST"
}
want_check() {