diff options
author | Tycho Andersen <tycho@docker.com> | 2017-06-20 16:53:02 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-06-20 17:31:38 +0000 |
commit | c3a176f62928251b3a6243285173a3e06c5f13d1 (patch) | |
tree | 3bd9cb5ea733ed6fce6b4da57b06f3b6a1a849b5 /testing | |
parent | d3b4811f0f52717746dd26c4b351bc09e2e797e2 (diff) | |
download | aports-c3a176f62928251b3a6243285173a3e06c5f13d1.tar.bz2 aports-c3a176f62928251b3a6243285173a3e06c5f13d1.tar.xz |
testing/audit: use / prefix instead of /usr
The config files we're using have / as the prefix and every other distro
has /, so let's just use that instead (also, the paths to e.g. audispd seem
to be hardcoded to /, so auditd as currently packaged fails without this
anyway).
Signed-off-by: Tycho Andersen <tycho@docker.com>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/audit/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/audit/APKBUILD b/testing/audit/APKBUILD index 5627905728..2309ce093f 100644 --- a/testing/audit/APKBUILD +++ b/testing/audit/APKBUILD @@ -30,7 +30,7 @@ build() { ./configure \ --build=$CBUILD \ --host=$CHOST \ - --prefix=/usr \ + --prefix=/ \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --localstatedir=/var \ @@ -57,8 +57,8 @@ package() { static() { pkgdesc="Static libaudit libraries" - mkdir -p "$subpkgdir"/usr/lib/ - mv "$pkgdir"/usr/lib/*.a "$subpkgdir"/usr/lib/ + mkdir -p "$subpkgdir"/lib/ + mv "$pkgdir"/lib/*.a "$subpkgdir"/lib/ } sha512sums="a3974547a6da15e87c9070f3aa8a40232555afbd8d6cdf41e6d3c2a059f766ae75febbe8ff72fdadb522222eefda08e55f10dd8d20a3cee2625a6048d38c152b audit-2.7.2.tar.gz |