git » glmark2-git.git » commit cc725be

Fix compilation error caused by waf --no-werror

author Ryo Munakata
2016-12-04 06:12:27 UTC
committer Ryo Munakata
2016-12-04 06:12:27 UTC
parent 606afc12c75faca0f58f955edf39a7943e4a4c3f

Fix compilation error caused by waf --no-werror

waf has no such option anymore: --no-werror

PKGBUILD +3 -4

diff --git a/PKGBUILD b/PKGBUILD
index 7834b84..5a133f9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
 # Maintainer: Ryo Munakata <afpacket@gmail.com>
 pkgname=glmark2-git
-pkgver=r825.fa71af2
+pkgver=r835.f413c5b
 pkgrel=1
 pkgdesc="OpenGL (ES) 2.0 benchmark (X11, Wayland, DRM)"
 arch=('i686' 'x86_64')
 url="https://launchpad.net/glmark2"
 license=('GPL3')
-depends=('libjpeg-turbo' 'libpng12' 'libx11' 'libxcb' 'libgl' 'wayland')
+depends=('libjpeg-turbo' 'libpng12' 'libx11' 'libxcb' 'wayland' 'libgl' 'libgles')
 makedepends=('git' 'python2')
 conflicts=('glmark2')
 provides=('glmark2')
@@ -36,8 +36,7 @@ build() {
     cd "${srcdir}/${pkgname}"
     python2 ./waf configure \
         --prefix=/usr \
-        --with-flavors=${GM2_FLAVORS} \
-        --no-werror
+        --with-flavors=${GM2_FLAVORS}
     python2 ./waf -j4
 }