Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 150106

Summary: mail-mta/courier syntax error?
Product: Gentoo Linux Reporter: Patrick Lauer <patrick>
Component: New packagesAssignee: Scott Taylor (RETIRED) <swtaylor>
Status: RESOLVED INVALID    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Patrick Lauer gentoo-dev 2006-10-04 14:04:33 UTC
from courier-0.53.2.ebuild:

src_test() {
        addpredict /
        vecho ">>> Test phase [check]: ${CATEGORY}/${PF}"

vecho isn't defined anywhere - typo?
Comment 1 Andrej Kacian (RETIRED) gentoo-dev 2006-10-06 19:09:43 UTC
From /usr/lib/portage/isolated-functions.sh:

  5 quiet_mode() {
  6   [[ ${PORTAGE_QUIET} -eq 1 ]]
  7 }
  8 
  9 vecho() {
 10   quiet_mode || echo "$@"
 11 }