androidmk: print unsupported $(call) and $(eval) lines

Unsupported top level lines were getting silently dropped, print
an unsupported translation error instead.

Change-Id: I1a8ac13966116c997c2a3be923f3c3ba6fbe2258
This commit is contained in:
Colin Cross
2015-03-26 16:15:48 -07:00
parent 28d76590f1
commit 24e6aef941

View File

@@ -166,6 +166,8 @@ func main() {
file.errorf(directive, "unsupported directive")
continue
}
} else {
file.errorf(t, "unsupported line")
}
}