diff options
author | Henrik Riomar <henrik.riomar@gmail.com> | 2019-03-08 18:53:45 +0100 |
---|---|---|
committer | Henrik Riomar <henrik.riomar@gmail.com> | 2019-03-08 19:00:11 +0100 |
commit | d35b35e78c7aac51df763d9a05d29f3d0f51b539 (patch) | |
tree | 602c77b02fd05aac2e69c73d49e93d4ad4794fd8 | |
parent | 3fdaa4cd926491488551563a9a1e5e794ece5bfe (diff) | |
download | aports-d35b35e78c7aac51df763d9a05d29f3d0f51b539.tar.bz2 aports-d35b35e78c7aac51df763d9a05d29f3d0f51b539.tar.xz |
testing/wlroots: fix order of meson args
-rw-r--r-- | testing/wlroots/APKBUILD | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testing/wlroots/APKBUILD b/testing/wlroots/APKBUILD index 325e1783b5..85d9a12f0e 100644 --- a/testing/wlroots/APKBUILD +++ b/testing/wlroots/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=wlroots pkgver=0.4.1 -pkgrel=0 +pkgrel=1 pkgdesc="A modular Wayland compositor library" url="https://github.com/swaywm/wlroots" arch="all" @@ -28,7 +28,10 @@ builddir="$srcdir/$pkgname-$pkgver" build() { cd "$builddir" - meson build --prefix /usr --libdir /usr/lib + meson \ + --prefix /usr \ + --libdir /usr/lib \ + . build ninja -C build } |