X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=compilation;h=69d6d9982aef8ab42d59616cdb7a08c1a005d3f9;hb=e93e77990a9e1fa893109df1c89b2b6e09b38cdc;hp=5a1582b40f08103f87e5bfb5c9f5595ef7ea9713;hpb=fea20390a6c51a1756e517f47e03a9e15d83e3f6;p=bash.d.git diff --git a/compilation b/compilation index 5a1582b..69d6d99 100644 --- a/compilation +++ b/compilation @@ -12,7 +12,9 @@ load_profile_defaults() { fi if [ -f "${profile}/make.defaults" ]; then - . "${profile}/make.defaults" + if [ -r "${profile}/make.defaults" ]; then + . "${profile}/make.defaults" + fi fi } @@ -22,11 +24,14 @@ load_profile_defaults /etc/portage/make.profile # 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 + if [ -r /etc/portage/make.conf ]; then + . /etc/portage/make.conf + fi fi # These are really the only variables that make sense to export to # subsequent commands. export CFLAGS export CXXFLAGS +export FCFLAGS export LDFLAGS