diff options
author | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2016-07-08 10:36:17 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2016-07-08 10:38:53 +0200 |
commit | 687a1cb70170e2ff80275acb478de3bb1c08278e (patch) | |
tree | 6d9ea143fcf862669325619322c8cbb230f24869 /community/wbar | |
parent | db1d2c069e66b3bf9962d76b0b48bfdcfc8d0384 (diff) | |
download | aports-687a1cb70170e2ff80275acb478de3bb1c08278e.tar.bz2 aports-687a1cb70170e2ff80275acb478de3bb1c08278e.tar.xz |
community/wbar: disable -Werror
Diffstat (limited to 'community/wbar')
-rw-r--r-- | community/wbar/APKBUILD | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/community/wbar/APKBUILD b/community/wbar/APKBUILD index 84dbe742d4..d2d52b7a16 100644 --- a/community/wbar/APKBUILD +++ b/community/wbar/APKBUILD @@ -18,13 +18,9 @@ source="https://wbar.googlecode.com/files/$pkgname-$pkgver.tgz _builddir=$srcdir/$pkgname-$pkgver prepare() { - local i cd "$_builddir" - for i in $source; do - case $i in - *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; - esac - done + default_prepare + sed -i '/-Werror/d' src/Makefile.* } build() { |