abuild: always set CBUILD and CTARGET if unset

This commit is contained in:
Natanael Copa 2013-08-01 06:36:16 +00:00
parent 0190dfaf8f
commit 7472b59bb4
1 changed files with 3 additions and 2 deletions

View File

@ -158,8 +158,6 @@ default_sanitycheck() {
# check if CARCH, CBUILD, CHOST and CTARGET is set
[ -z "$CHOST" ] && die "Please set CHOST in /etc/abuild.conf"
[ -z "$CBUILD" ] && CBUILD="$CHOST"
[ -z "$CTARGET" ] && CTARGET="$CHOST"
if [ -z "$CARCH" ]; then
die "Please fix CHOST, or set CARCH in abuild.conf"
@ -1911,6 +1909,9 @@ if [ -z "$CLIBC" ]; then
esac
fi
[ -z "$CBUILD" ] && CBUILD="$CHOST"
[ -z "$CTARGET" ] && CTARGET="$CHOST"
cd "$startdir" || die
. "$APKBUILD"