diff options
Diffstat (limited to 'core/xinetd')
-rw-r--r-- | core/xinetd/PKGBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/xinetd/PKGBUILD b/core/xinetd/PKGBUILD index 27bf3b2a0..552b96cf9 100644 --- a/core/xinetd/PKGBUILD +++ b/core/xinetd/PKGBUILD @@ -6,7 +6,7 @@ pkgname=xinetd pkgver=2.3.14 pkgrel=7 pkgdesc="A secure replacement for inetd" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.xinetd.org/" license=('custom') optdepends=('perl: for xconv.pl script') @@ -25,7 +25,8 @@ md5sums=('567382d7972613090215c6c54f9b82d9' build() { cd $srcdir/$pkgname-$pkgver sed -i "s#${prefix}/man#${prefix}/share/man#" configure - ./configure --prefix=/usr --without-libwrap + ./configure --prefix=/usr --without-libwrap \ + --build=${CHOST} --host=${CHOST} make } |