diff options
author | Carlo Landmeter <clandmeter@alpinelinux.org> | 2019-01-07 14:59:39 +0000 |
---|---|---|
committer | Carlo Landmeter <clandmeter@alpinelinux.org> | 2019-01-07 14:59:44 +0000 |
commit | 030b611b11d11cdb063a0a6eeb6a4e54995881fe (patch) | |
tree | ede7853e9de1fee3df1732da9e258dba3c7040d5 /community/libcoro | |
parent | 7025ae57ba7334a53bb57a825b28ee6a95de01f2 (diff) | |
download | aports-030b611b11d11cdb063a0a6eeb6a4e54995881fe.tar.bz2 aports-030b611b11d11cdb063a0a6eeb6a4e54995881fe.tar.xz |
community/libcoro: armv7 build fix
Diffstat (limited to 'community/libcoro')
-rw-r--r-- | community/libcoro/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/libcoro/APKBUILD b/community/libcoro/APKBUILD index cdd5562aa7..0a5d591f13 100644 --- a/community/libcoro/APKBUILD +++ b/community/libcoro/APKBUILD @@ -44,7 +44,7 @@ build() { CFLAGS="-fPIC -pedantic -Wall" case "$CARCH" in - x86* | armv7*) CFLAGS="$CFLAGS -DCORO_ASM";; + x86*) CFLAGS="$CFLAGS -DCORO_ASM";; *) CFLAGS="$CFLAGS -DCORO_SJLJ";; esac |