X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=compilation;h=3368ad2806f28fcd0010088cbd95413b66fdc25f;hb=4eac79281e23f13831ef72b8d2366a3ab71c04d9;hp=9aab1ac62f274fea8bf2055e805a15af1ad84636;hpb=d8d14246f041acc7b29b2e8946367bcc39c23b85;p=bash.d.git diff --git a/compilation b/compilation index 9aab1ac..3368ad2 100644 --- a/compilation +++ b/compilation @@ -1,10 +1,20 @@ #!/bin/bash -# Grab CFLAGS, etc. from make.conf. -source /etc/portage/make.conf +# Grab CFLAGS, etc. from the profile... +if [ -f /etc/portage/make.profile/make.defaults ]; then + source /etc/portage/make.profile/make.defaults +fi + +# and from make.conf, allowing the values in make.conf to override the +# ones in the profile. +if [ -f /etc/portage/make.conf ]; then + source /etc/portage/make.conf +fi + + +# Not a portage variable, but it's real handy. +REPOS="${DISTDIR}/../repositories" + # LDFLAGS comes from.. somewhere else. export LDFLAGS="-Wl,-O1 -Wl,--as-needed" - -# Portage does this for us. -export MAKE="make ${MAKEOPTS}"