For compatibility with previous behavior, so the bashrc sourcing
authorZac Medico <zmedico@gentoo.org>
Fri, 23 Nov 2007 10:23:58 +0000 (10:23 -0000)
committerZac Medico <zmedico@gentoo.org>
Fri, 23 Nov 2007 10:23:58 +0000 (10:23 -0000)
after the ebuild environment is fully loaded. (trunk r8617)

svn path=/main/branches/2.1.2/; revision=8618

bin/ebuild.sh

index 8124a15114acce4d4ab054662885f5b2f4305e5d..132da2c1103ec64aa24b88fdf88bbb33d8b06596 100755 (executable)
@@ -60,9 +60,6 @@ export PATH="/usr/local/sbin:/sbin:/usr/sbin:${PORTAGE_BIN_PATH}:/usr/local/bin:
 
 source "${PORTAGE_BIN_PATH}/isolated-functions.sh"  &>/dev/null
 
-OCC="$CC"
-OCXX="$CXX"
-
 # Set IMAGE for minimal backward compatibility with
 # overlays or user's bashrc, but don't export it.
 [ "${EBUILD_PHASE}" == "preinst" ] && IMAGE=${D}
@@ -101,36 +98,6 @@ lchgrp() {
        chgrp -h "$@"
 }
 
-# source the existing profile.bashrc's.
-save_IFS
-IFS=$'\n'
-for dir in ${PROFILE_PATHS}; do
-       # Must unset it so that it doesn't mess up assumptions in the RCs.
-       unset IFS
-       if [ -f "${dir}/profile.bashrc" ]; then
-               qa_source "${dir}/profile.bashrc"
-       fi
-done
-restore_IFS
-
-# We assume if people are changing shopts in their bashrc they do so at their
-# own peril.  This is the ONLY non-portage bit of code that can change shopts
-# without a QA violation.
-if [ -f "${PORTAGE_BASHRC}" ]; then
-       # If $- contains x, then tracing has already enabled elsewhere for some
-       # reason.  We preserve it's state so as not to interfere.
-       if [ "$PORTAGE_DEBUG" != "1" ] || [ "${-/x/}" != "$-" ]; then
-               source "${PORTAGE_BASHRC}"
-       else
-               set -x
-               source "${PORTAGE_BASHRC}"
-               set +x
-       fi
-fi
-
-[ ! -z "$OCC" ] && export CC="$OCC"
-[ ! -z "$OCXX" ] && export CXX="$OCXX"
-
 esyslog() {
        # Custom version of esyslog() to take care of the "Red Star" bug.
        # MUST follow functions.sh to override the "" parameter problem.
@@ -1691,6 +1658,37 @@ if [ "${EBUILD_PHASE}" != "depend" ] ; then
        unset x
 fi
 
+OCC="${CC}"
+OCXX="${CXX}"
+
+# source the existing profile.bashrc's.
+save_IFS
+IFS=$'\n'
+for x in ${PROFILE_PATHS}; do
+       # Must unset it so that it doesn't mess up assumptions in the RCs.
+       unset IFS
+       [ -f "${x}/profile.bashrc" ] && qa_source "${x}/profile.bashrc"
+done
+restore_IFS
+
+# We assume if people are changing shopts in their bashrc they do so at their
+# own peril.  This is the ONLY non-portage bit of code that can change shopts
+# without a QA violation.
+if [ -f "${PORTAGE_BASHRC}" ]; then
+       # If $- contains x, then tracing has already enabled elsewhere for some
+       # reason.  We preserve it's state so as not to interfere.
+       if [ "$PORTAGE_DEBUG" != "1" ] || [ "${-/x/}" != "$-" ]; then
+               source "${PORTAGE_BASHRC}"
+       else
+               set -x
+               source "${PORTAGE_BASHRC}"
+               set +x
+       fi
+fi
+
+[ ! -z "$OCC" ] && export CC="$OCC"
+[ ! -z "$OCXX" ] && export CXX="$OCXX"
+
 if [ -n "${EBUILD_SH_ARGS}" ] ; then
        case ${EBUILD_SH_ARGS} in
        nofetch)