feat(profiles): Move portage permissions setting out of make.conf

Developer friendly permissions are fine as the default in CoreOS.
This commit is contained in:
Michael Marineau 2014-06-10 15:25:35 -07:00
parent b2b0c46c28
commit a16f056692
2 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,6 @@ PORTAGE_TMPDIR=${ROOT}tmp/
PORT_LOGDIR=${ROOT}tmp/portage/logs/ PORT_LOGDIR=${ROOT}tmp/portage/logs/
PORTAGE_WORKDIR_MODE="0755"
PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/:${ROOT}usr/share/pkgconfig/" PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/:${ROOT}usr/share/pkgconfig/"
PORTDIR="/usr/local/portage/stable" PORTDIR="/usr/local/portage/stable"

View File

@ -72,3 +72,6 @@ CCACHE_SIZE="2.5G"
# Always build binary packages, remove old build logs, avoid running as root. # Always build binary packages, remove old build logs, avoid running as root.
FEATURES="buildpkg ccache clean-logs compressdebug parallel-install splitdebug FEATURES="buildpkg ccache clean-logs compressdebug parallel-install splitdebug
userfetch userpriv usersandbox" userfetch userpriv usersandbox"
# No need to restrict access to build directories in dev environments.
PORTAGE_WORKDIR_MODE="0755"