diff options
Diffstat (limited to 'main/xf86-video-rendition/APKBUILD')
-rw-r--r-- | main/xf86-video-rendition/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/xf86-video-rendition/APKBUILD b/main/xf86-video-rendition/APKBUILD index e2d02188a5..d89eda86c1 100644 --- a/main/xf86-video-rendition/APKBUILD +++ b/main/xf86-video-rendition/APKBUILD @@ -26,7 +26,11 @@ prepare() { build() { cd "$srcdir"/$pkgname-$pkgver export LDFLAGS="$LDFLAGS -Wl,-z,lazy" - ./configure --prefix=/usr || return 1 + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + || return 1 make } |