diff options
author | Marius Mauch <genone@gentoo.org> | 2008-06-20 05:01:55 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2008-06-20 05:01:55 +0000 |
commit | 806c108876c999e774fa56ac95671bc51be83452 (patch) | |
tree | c3d1355c65187197244c4c706d34e102723508f0 | |
parent | e18a2db152ec6c8131d889ce348ee28ad395f677 (diff) | |
download | portage-806c108876c999e774fa56ac95671bc51be83452.tar.gz portage-806c108876c999e774fa56ac95671bc51be83452.tar.bz2 portage-806c108876c999e774fa56ac95671bc51be83452.zip |
revert accidential commit
svn path=/main/trunk/; revision=10734
-rwxr-xr-x | bin/isolated-functions.sh | 11 | ||||
-rw-r--r-- | cnf/make.globals | 2 |
2 files changed, 2 insertions, 11 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index 1a64bab7e..6faa5d656 100755 --- a/bin/isolated-functions.sh +++ b/bin/isolated-functions.sh @@ -161,7 +161,7 @@ elog_base() { local messagetype [ -z "${1}" -o -z "${T}" -o ! -d "${T}/logging" ] && return 1 case "${1}" in - BLANK|INFO|WARN|ERROR|LOG|QA) + INFO|WARN|ERROR|LOG|QA) messagetype="${1}" shift ;; @@ -174,15 +174,6 @@ elog_base() { return 0 } -eblank() { - [[ ${LAST_E_CMD} == "eblank" ]] && return 0 - elog_base BLANK - [[ ${RC_ENDCOL} != "yes" && ${LAST_E_CMD} == "ebegin" ]] && echo - echo -e " ${BLANK}*${NORMAL}" - LAST_E_CMD="eblank" - return 0 -} - eqawarn() { elog_base QA "$*" [[ ${RC_ENDCOL} != "yes" && ${LAST_E_CMD} == "ebegin" ]] && echo diff --git a/cnf/make.globals b/cnf/make.globals index f0c54e88c..594278f19 100644 --- a/cnf/make.globals +++ b/cnf/make.globals @@ -85,7 +85,7 @@ PORTAGE_INST_GID="0" PORTAGE_WORKDIR_MODE="0700" # Some defaults for elog -PORTAGE_ELOG_CLASSES="blank log warn error" +PORTAGE_ELOG_CLASSES="log warn error" PORTAGE_ELOG_SYSTEM="save_summary echo" PORTAGE_ELOG_MAILURI="root" |