summaryrefslogtreecommitdiff
path: root/abuild.in
diff options
context:
space:
mode:
Diffstat (limited to 'abuild.in')
-rwxr-xr-xabuild.in5
1 files changed, 3 insertions, 2 deletions
diff --git a/abuild.in b/abuild.in
index ad1adc2..28699aa 100755
--- a/abuild.in
+++ b/abuild.in
@@ -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"