diff options
author | Leo <thinkabit.ukim@gmail.com> | 2020-12-28 11:08:47 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-12-28 14:15:29 +0000 |
commit | eb205dae722c49f34d0efe39dd4d009954eefc64 (patch) | |
tree | f19620519c27e9c44c0a9f93f6c433e4068fa892 /community | |
parent | 581f61aa4c2067eef3014063034bbebd7d883858 (diff) | |
download | aports-eb205dae722c49f34d0efe39dd4d009954eefc64.tar.gz aports-eb205dae722c49f34d0efe39dd4d009954eefc64.tar.bz2 aports-eb205dae722c49f34d0efe39dd4d009954eefc64.tar.xz |
community/wine: fix build by working around -fno-common
Diffstat (limited to 'community')
-rw-r--r-- | community/wine/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/community/wine/APKBUILD b/community/wine/APKBUILD index 2579982c47..2c78e5db1d 100644 --- a/community/wine/APKBUILD +++ b/community/wine/APKBUILD @@ -38,6 +38,7 @@ build() { case "$CARCH" in x86_64) _win64=--enable-win64;; esac + CFLAGS="$CFLAGS -fcommon" \ ./configure \ --build=$CBUILD \ --host=$CHOST \ |