Hey, Look at this snippet from ebuild.sh, around line 1010: ===================================== # in the future might use e* from /etc/init.d/functions.sh if i feel like it debug-print() { # if $T isn't defined, we're in dep calculation mode and # shouldn't do anything [ -z "$T" ] && return 0 ===================================== Now, guess what, users define $T themselves :) This results in errors like: /usr/sbin/ebuild.sh: line 1033: /home/wmertens/tmp/eclass-debug.log: Permission denied Please fix this, relying on undefined variables is a bit sloppy :-/ Wout.
Fixed (T is defined by doebuild these days afaik).