X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=compilation;h=1dc51dee4bfddf6ea1ee3caf3009808a00130095;hb=f798b14aba7f6c0b9a30c7d169fe6b997613ed1c;hp=609534503dc9fc11e126da16f8082642f97ea140;hpb=cbff2fcb6dadd1def39f23ab938eb8df7c9fa57b;p=bash.d.git diff --git a/compilation b/compilation index 6095345..1dc51de 100644 --- a/compilation +++ b/compilation @@ -1,7 +1,24 @@ -#!/bin/bash +#!/bin/sh -# 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 + . /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 + . /etc/portage/make.conf +fi + + +# Not a portage variable, but it's real handy. +REPOS="${DISTDIR}/../repositories" + +# These are really the only two that make sense to export to +# subsequent commands. +export CFLAGS +export CXXFLAGS # LDFLAGS comes from.. somewhere else. export LDFLAGS="-Wl,-O1 -Wl,--as-needed"