diff options
author | Daniel Sabogal <dsabogal@ufl.edu> | 2016-11-15 16:14:06 -0500 |
---|---|---|
committer | Daniel Sabogal <dsabogalcc@gmail.com> | 2016-11-15 16:18:14 -0500 |
commit | 0e4fc53ee46c8401d8773c04ae9046d98788444c (patch) | |
tree | ee0a61378b8ea1f107dcf48558b24e626b5d383b | |
parent | 35bf8612159af7f109a0ef263381c84614f38086 (diff) | |
download | aports-0e4fc53ee46c8401d8773c04ae9046d98788444c.tar.bz2 aports-0e4fc53ee46c8401d8773c04ae9046d98788444c.tar.xz |
main/hwloc: fix arm builds
-rw-r--r-- | testing/hwloc/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/hwloc/APKBUILD b/testing/hwloc/APKBUILD index d9c4d91438..006d58f196 100644 --- a/testing/hwloc/APKBUILD +++ b/testing/hwloc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=hwloc pkgver=1.11.4 -pkgrel=0 +pkgrel=1 pkgdesc="Portable abstraction of hierarchical hardware architectures" url="https://www.open-mpi.org/" arch="all" @@ -20,7 +20,9 @@ build() { cd "$builddir" ./configure \ --prefix=/usr \ + --sbindir=/usr/bin \ --mandir=/usr/share/man \ + --localstatedir=/var \ || return 1 make || return 1 } @@ -35,7 +37,6 @@ _tools() { mkdir -p "$subpkgdir"/usr mv "$pkgdir"/usr/bin "$subpkgdir"/usr || return 1 - mv "$pkgdir"/usr/sbin "$subpkgdir"/usr || return 1 } md5sums="840520dd09e391ef4b2268ccb9ac73fa hwloc-1.11.4.tar.bz2" |