summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Wambold2015-09-10 17:34:27 -0400
committerTom Wambold2015-09-10 17:34:27 -0400
commitf214c63ad88a5324a48ce9860983b11729c4ad81 (patch)
tree64b763dfc0916233935e15b707332d0cae776426
parent90dd29789a6443b931c03e3bb186d7e0a4fe0dcc (diff)
downloadaur-f214c63ad88a5324a48ce9860983b11729c4ad81.tar.gz
Add CFLAGS due to reported build error.
A user reported a build error without adding CFLAGS=-Wno-strict-aliasing to the build.
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index d917a5125554..75f79675effa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Tom Wambold <tom5760@gmail.com>
pkgname=core
pkgver=4.8
-pkgrel=1
+pkgrel=2
pkgdesc="Common Open Research Emulator"
arch=('i686' 'x86_64')
url="http://cs.itd.nrl.navy.mil/work/core/"
@@ -23,7 +23,7 @@ build() {
patch -p1 < ../python2.patch
- ./configure CPPFLAGS=-Wno-strict-aliasing PYTHON=/usr/bin/python2 --prefix=/usr
+ ./configure CFLAGS=-Wno-strict-aliasing CPPFLAGS=-Wno-strict-aliasing PYTHON=/usr/bin/python2 --prefix=/usr
make
}