summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorWheelchairArtist2024-03-17 18:19:46 +0100
committerWheelchairArtist2024-03-17 18:19:46 +0100
commitc6dc187af5a25d3d7e2b7af8e32d5f6ee44150ca (patch)
tree20ff6801b896cc9cb89b54761a4294f77823a32b /PKGBUILD
parente203d8a47e9ebb6543b8cf2a460f426241d13bf5 (diff)
downloadaur-c6dc187af5a25d3d7e2b7af8e32d5f6ee44150ca.tar.gz
fix compiling errors coming from host CFLAGS by removing those
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD6
1 files changed, 5 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 812689d23259..ce83124cb2d7 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@
pkgname=wineasio
pkgver=1.2.0
-pkgrel=3
+pkgrel=4
pkgdesc="ASIO driver implementation for Wine"
url="https://github.com/wineasio/wineasio"
@@ -33,6 +33,10 @@ prepare(){
build() {
cd "$pkgname-$pkgver"
+
+ # fix compiling errors coming from host CFLAGS by removing those
+ CFLAGS=""
+
make 32
make 64
}