blob: 03d98ad70b829debf144f99c59995167c0a1bc49 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# NASTY HACK: somehow emerge tinkers with the environment and
# reset_screen_title is not available anymore, so we disable it before running
# emerge, and initialize it again afterwards
emerge() {
local PROMPT_COMMAND=true
/usr/bin/emerge "$@"
}
_load dist portdir
|