diff options
author | Breno Leitao <breno.leitao@gmail.com> | 2017-03-29 20:25:09 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-30 01:36:02 +0200 |
commit | 0082ef0ebadf811f5ca8ce1837fa4442bc1b2793 (patch) | |
tree | 813d872378d32e59bd7eea4751dc0681f728f2e4 /main | |
parent | ed8adfaa18ef9f94927df8df68d8bfb619d99014 (diff) | |
download | aports-0082ef0ebadf811f5ca8ce1837fa4442bc1b2793.tar.bz2 aports-0082ef0ebadf811f5ca8ce1837fa4442bc1b2793.tar.xz |
main/nagios-plugins: don't try to remove nonexistent check-game
Nagios-plugins is not building check-game plugin anymore, thus,
abuild is failing to build this package because it tries to remove
(it is not important for Alpine) a package that is not being built
anymore.
Diffstat (limited to 'main')
-rw-r--r-- | main/nagios-plugins/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/nagios-plugins/APKBUILD b/main/nagios-plugins/APKBUILD index f64d6c7cb3..10f9e04360 100644 --- a/main/nagios-plugins/APKBUILD +++ b/main/nagios-plugins/APKBUILD @@ -76,7 +76,7 @@ package() { make DESTDIR="$pkgdir" install || return 1 # Remove plugins that are useless or doesn't work on Alpine. - local name; for name in apt flexlm game oracle; do + local name; for name in apt flexlm oracle; do rm "$pkgdir/$_plugins_dir"/check_$name done |