diff --git a/srcpkgs/xbps-src/INSTALL b/srcpkgs/xbps-src/INSTALL index 016d0637cde..ef97110abcf 100644 --- a/srcpkgs/xbps-src/INSTALL +++ b/srcpkgs/xbps-src/INSTALL @@ -1,7 +1,9 @@ case ${ACTION} in post) # Restrict access to users in wheel group. - chown root:wheel usr/libexec/xbps-src-chroot-helper - chmod 4750 usr/libexec/xbps-src-chroot-helper + set +e + chown root:wheel usr/libexec/xbps-src-chroot-helper || true + chmod 4750 usr/libexec/xbps-src-chroot-helper || true + set -e ;; esac diff --git a/srcpkgs/xbps-src/template b/srcpkgs/xbps-src/template index 7a5733e668e..c73a5cdf0e7 100644 --- a/srcpkgs/xbps-src/template +++ b/srcpkgs/xbps-src/template @@ -1,6 +1,6 @@ # Template file for 'xbps-src' pkgname=xbps-src -version=20130316 +version=20130317 revision=1 build_style=gnu-makefile make_build_args="PREFIX=/usr ETCDIR=/etc/xbps"