diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-03-07 10:21:26 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-03-07 10:30:23 +0000 |
commit | 5a7e01f904af8f9c420bd3cb625d36cfc046428d (patch) | |
tree | 9fa80d94c1665497e12935a04edd169e4b32de7b /main | |
parent | bf8e832f55127ab937f22ed2a0ad96dac76302dc (diff) | |
download | aports-5a7e01f904af8f9c420bd3cb625d36cfc046428d.tar.bz2 aports-5a7e01f904af8f9c420bd3cb625d36cfc046428d.tar.xz |
main/xfsprogs: make sure installed files are owned by root
fixes #2687
Diffstat (limited to 'main')
-rw-r--r-- | main/xfsprogs/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/xfsprogs/APKBUILD b/main/xfsprogs/APKBUILD index 36cc6d4c46..dd204f4855 100644 --- a/main/xfsprogs/APKBUILD +++ b/main/xfsprogs/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=xfsprogs pkgver=3.1.11 -pkgrel=0 +pkgrel=1 pkgdesc="XFS filesystem utilities" url="http://oss.sgi.com/projects/xfs/" arch="all" @@ -24,6 +24,8 @@ build() { cd "$_builddir" export DEBUG=-DNDEBUG export OPTIMIZER="$CFLAGS" + export INSTALL_USER=root + export INSTALL_GROUP=root ac_cv_header_aio_h=yes ac_cv_lib_rt_lio_listio=yes \ ./configure \ |