diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-07-07 07:39:21 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-07-07 07:39:21 +0000 |
commit | 962c40d01a2c1b995f5a72ec86156a8564f7423f (patch) | |
tree | ed1f5fa48e26841b6aef94914d83803f814e0f65 | |
parent | cf90675943aae74f5ff47435503a58b76e3d3098 (diff) | |
download | aports-962c40d01a2c1b995f5a72ec86156a8564f7423f.tar.bz2 aports-962c40d01a2c1b995f5a72ec86156a8564f7423f.tar.xz |
testing/rlog: fix configure args for consistency
-rw-r--r-- | testing/rlog/APKBUILD | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/testing/rlog/APKBUILD b/testing/rlog/APKBUILD index 2cf2f9d4f9..5aa318cccd 100644 --- a/testing/rlog/APKBUILD +++ b/testing/rlog/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=rlog pkgver=1.4 -pkgrel=2 +pkgrel=3 pkgdesc="A flexible message logging facility for C++ programs and libraries." url="http://www.arg0.net/rlog" arch="all" @@ -18,6 +18,7 @@ _builddir=${srcdir}/${pkgname}-${pkgver} prepare() { local i cd "$_builddir" + update_config_sub || return 1 for i in $source; do case $i in *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; @@ -27,7 +28,11 @@ prepare() { build() { cd "$_builddir" - ./configure --prefix=/usr + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 make } |