summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebRmv2016-07-17 11:44:35 +0200
committerSebRmv2016-07-17 11:44:35 +0200
commit4fa2bc27a71c046a80ca47087f5b3b46d61dc2fc (patch)
tree0eefac46f3d15814179537580ed79d766e51fd7d
parent2971e036a80738797d42315257d3bdb6388e1a08 (diff)
downloadaur-4fa2bc27a71c046a80ca47087f5b3b46d61dc2fc.tar.gz
Fix PKGBUILD by disabling warning on shift of negative values.
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD4
2 files changed, 3 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e1b8ca2accd7..789f15838c25 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = m68k-atari-mint-binutils
pkgdesc = A set of programs to assemble and manipulate binary and object files for the M68K architecture
pkgver = 2.23.2
- pkgrel = 5
+ pkgrel = 6
url = http://www.gnu.org/software/binutils/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index c9fde6787cbf..0f0689ff0e14 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@ pkgname=m68k-atari-mint-binutils
_pkgname=binutils
_target="m68k-atari-mint"
pkgver=2.23.2
-pkgrel=5
+pkgrel=6
pkgdesc="A set of programs to assemble and manipulate binary and object files for the M68K architecture"
url="http://www.gnu.org/software/binutils/"
arch=('i686' 'x86_64')
@@ -28,7 +28,7 @@ build() {
cd ${srcdir}/${_pkgname}-${pkgver}
CFLAGS=${CFLAGS//-D_FORTIFY_SOURCE=?/}
- CFLAGS="${CFLAGS} -Wno-unused-value"
+ CFLAGS="${CFLAGS} -Wno-unused-value -Wno-shift-negative-value"
export CFLAGS
CPPFLAGS=${CPPFLAGS//-D_FORTIFY_SOURCE=?/}