diff options
author | Milan P. Stanić <mps@arvanta.net> | 2020-01-19 13:57:33 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2020-01-22 12:12:29 +0100 |
commit | de0ae4eafabb85cfe9cf12ac0abd69d3fbbc1276 (patch) | |
tree | c21c710eae735b85838f37f5cbe6fb9232a89ee3 | |
parent | b1cd1b7acfde20389c9f5834feb9af6884fbe5b4 (diff) | |
download | aports-de0ae4eafabb85cfe9cf12ac0abd69d3fbbc1276.tar.bz2 aports-de0ae4eafabb85cfe9cf12ac0abd69d3fbbc1276.tar.xz |
main/iproute2: fix LIBDIR for tc plugins
default tc LIBDIR is /usr/lib and not /lib, by removing LIBDIR
from make invocation in APKBUILD build function package functions
put tc helper in /usr/lib, and then 'tc' can find them
fixes: #6948
-rw-r--r-- | main/iproute2/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/iproute2/APKBUILD b/main/iproute2/APKBUILD index 16c7312ac3..bba168b592 100644 --- a/main/iproute2/APKBUILD +++ b/main/iproute2/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=iproute2 pkgver=5.4.0 -pkgrel=0 +pkgrel=1 pkgdesc="IP Routing Utilities" url="https://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2" arch="all" @@ -29,7 +29,7 @@ build() { --sysconfdir=/etc \ --mandir=/usr/share/man \ --localstatedir=/var - make CCOPTS="-D_GNU_SOURCE $CFLAGS" LIBDIR=/lib + make CCOPTS="-D_GNU_SOURCE $CFLAGS" } package() { |