Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 150106 - mail-mta/courier syntax error?
Summary: mail-mta/courier syntax error?
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Scott Taylor (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-10-04 14:04 UTC by Patrick Lauer
Modified: 2006-10-06 19:09 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 }