diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2014-02-19 09:07:11 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2014-02-19 09:08:04 +0000 |
commit | 7c906a8315f01ba377a91925b598635e1d1afb4b (patch) | |
tree | 8bf136affbaf927b603703dfc73306c758433275 | |
parent | 8df009284c4c1f79abd2360b5c373fb391c34706 (diff) | |
download | aports-7c906a8315f01ba377a91925b598635e1d1afb4b.tar.bz2 aports-7c906a8315f01ba377a91925b598635e1d1afb4b.tar.xz |
main/attr: make sure installed files are owned by root
ref #2687
-rw-r--r-- | main/attr/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/attr/APKBUILD b/main/attr/APKBUILD index 7ef4c49abb..c507aca39a 100644 --- a/main/attr/APKBUILD +++ b/main/attr/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=attr pkgver=2.4.47 -pkgrel=2 +pkgrel=3 pkgdesc="Utilities for managing filesystem extended attributes" url="http://acl.bestbits.at/" arch="all" @@ -32,7 +32,8 @@ build() { unset PLATFORM #184564 export OPTIMIZER="${CFLAGS}" export DEBUG=-DNDEBUG - + export INSTALL_USER=root + export INSTALL_GROUP=root ./configure \ --build=$CBUILD \ --host=$CHOST \ |