Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bryan@shatow.net>2014-04-19 07:28:24 +0400
committerBryan Drewery <bryan@shatow.net>2014-04-19 07:28:24 +0400
commit26d51af4cbe71e5a63f9774345efa695f1093dc2 (patch)
tree1b9bd562af628a61bacdbf154eefbe29cde3e924
parent603a36a868fa0f83f6deced3240072c58f5b937f (diff)
Rename check-orphans to check-plist
-rw-r--r--src/share/poudriere/awk/processonelog2.awk2
-rwxr-xr-xsrc/share/poudriere/common.sh6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/share/poudriere/awk/processonelog2.awk b/src/share/poudriere/awk/processonelog2.awk
index ce38c1ad..1b892cdf 100644
--- a/src/share/poudriere/awk/processonelog2.awk
+++ b/src/share/poudriere/awk/processonelog2.awk
@@ -1,7 +1,7 @@
# Read a single errorlogfile and output a phase
/Filesystem touched during build/ { res[0]="build_fs_violation" }
/Filesystem touched during stage/ { res[1]="stage_fs_violation" }
-/check\-orphans failures/ { res[2]="check-orphans" }
+/check\-plist failures/ { res[2]="check-plist" }
/stage\-qa failures/ { res[3]="stage-qa" }
/Files or directories (left over|removed|modified)/ { res[4]="leftovers" }
diff --git a/src/share/poudriere/common.sh b/src/share/poudriere/common.sh
index 39277327..67c053b3 100755
--- a/src/share/poudriere/common.sh
+++ b/src/share/poudriere/common.sh
@@ -1602,10 +1602,10 @@ _real_build_port() {
die=1
fi
- bset ${MY_JOBID} status "check-orphans:${port}"
+ bset ${MY_JOBID} status "check-plist:${port}"
if ! injail env DEVELOPER=1 ${PORT_FLAGS} \
- make -C ${portdir} check-orphans; then
- msg "Error: check-orphans failures detected"
+ make -C ${portdir} check-plist; then
+ msg "Error: check-plist failures detected"
[ "${PORTTESTING_FATAL}" != "no" ] &&
return 1
die=1