diff options
author | mrxx | 2017-01-11 22:02:27 +0100 |
---|---|---|
committer | mrxx | 2017-01-11 22:02:27 +0100 |
commit | 604f3fe6da3266fe39799f9df34408722dba54fa (patch) | |
tree | 525582954b5353e88d2e94f17e1aae764ff7ef3b | |
parent | ae95a33ee7d1d9736e8929729234cb856f062039 (diff) | |
download | aur-604f3fe6da3266fe39799f9df34408722dba54fa.tar.gz |
Fixed potential compilation issue due to useless warnings
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | PKGBUILD | 3 |
2 files changed, 4 insertions, 3 deletions
@@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Sun Mar 13 19:36:12 UTC 2016 +# Wed Jan 11 21:01:28 UTC 2017 pkgbase = dislocker pkgdesc = Read BitLocker encrypted volumes under Linux pkgver = 0.6.1 - pkgrel = 1 + pkgrel = 2 url = http://www.hsc.fr/ressources/outils/dislocker arch = i686 arch = x86_64 @@ -2,7 +2,7 @@ pkgname=dislocker pkgver=0.6.1 -pkgrel=1 +pkgrel=2 pkgdesc="Read BitLocker encrypted volumes under Linux" arch=('i686' 'x86_64') url="http://www.hsc.fr/ressources/outils/dislocker" @@ -18,6 +18,7 @@ build() { cd "$srcdir/$pkgname-$pkgver" cmake -DCMAKE_INSTALL_PREFIX=/usr \ -Dlibdir=/usr/lib \ + -D WARN_FLAGS:STRING="-Wall -Wextra" \ . make } |