diff options
Diffstat (limited to 'main/nrpe/APKBUILD')
-rw-r--r-- | main/nrpe/APKBUILD | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/main/nrpe/APKBUILD b/main/nrpe/APKBUILD index 4d59a80fb..98ee89f90 100644 --- a/main/nrpe/APKBUILD +++ b/main/nrpe/APKBUILD @@ -19,12 +19,16 @@ source="http://downloads.sourceforge.net/nagios/$pkgname-$pkgver.tar.gz build() { cd "$srcdir"/$pkgname-$pkgver - ./configure --prefix=/usr \ + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \ --libexecdir=/usr/lib/nagios/plugins \ - --enable-command-args + --enable-command-args \ + || return 1 make || return 1 } |