chez-scheme: use broken= instead of msg_error

This commit is contained in:
Michael Gehring 2017-11-27 14:42:59 +00:00
parent 6975750f2d
commit 8106d9de55
1 changed files with 2 additions and 2 deletions

View File

@ -20,13 +20,13 @@ case "$XBPS_MACHINE" in
i686*) _host=ti3le;;
x86_64*) _host=ta6le;;
arm*) _host=arm32le;; # no threading makefile
*) msg_error "$pkgname: unsupported host platform.\n";;
*) broken="unsupported host platform";;
esac
case "$XBPS_TARGET_MACHINE" in
i686*) _target=ti3le;;
x86_64*) _target=ta6le;;
arm*) _target=arm32le;;
*) msg_error "$pkgname: unsupported target platform.\n";;
*) broken="unsupported target platform";;
esac
post_extract() {