diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-15 16:36:05 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-03-15 16:36:55 +0000 |
commit | fbf7423a6bbdc6b1505c9f62d10ed2190979c0cf (patch) | |
tree | 5294b1bbf96650d783fc79fa5e79bbf39b285b93 /main/nrpe/APKBUILD | |
parent | 556e6c0ac8d1a68434ceb4963060fb0bf108180c (diff) | |
download | aports-fbf7423a6bbdc6b1505c9f62d10ed2190979c0cf.tar.bz2 aports-fbf7423a6bbdc6b1505c9f62d10ed2190979c0cf.tar.xz |
main/nrpe: compile with --enable-command-args
fixes #324
Diffstat (limited to 'main/nrpe/APKBUILD')
-rw-r--r-- | main/nrpe/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/nrpe/APKBUILD b/main/nrpe/APKBUILD index ba12953e22..ddc67fb423 100644 --- a/main/nrpe/APKBUILD +++ b/main/nrpe/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=nrpe pkgver=2.12 -pkgrel=1 +pkgrel=2 pkgusers="nagios" pkggroups="nagios" pkgdesc="NRPE allows you to remotely execute Nagios plugins on other Linux/Unix machines." @@ -21,7 +21,8 @@ build() { ./configure --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ - --infodir=/usr/share/info + --infodir=/usr/share/info \ + --enable-command-args make || return 1 } |