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:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-11-09 18:45:21 +0400
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-11-09 18:45:21 +0400
commit1df2c4f431a4cf58db3337883114d019f7b3094b (patch)
treeb5033012024e6cf9b5db47d212919ef6956e86ab
parent905bc00f63448caa4dfc625c9a3237ae1f6f8089 (diff)
install depends before building, that force expansion to only be done what things are installed
-rw-r--r--src/poudriere.d/common.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/poudriere.d/common.sh b/src/poudriere.d/common.sh
index 13c82d54..ee823782 100644
--- a/src/poudriere.d/common.sh
+++ b/src/poudriere.d/common.sh
@@ -395,6 +395,7 @@ build_pkg() {
rm -rf ${JAILBASE}/wrkdirs/*
msg "Building ${port}"
+ injail make -C ${portdir} fetch-depends extract-depends patch-depends build-depends lib-depend
injail make -C ${portdir} clean package
if [ $? -eq 0 ]; then
STATS_BUILT=$(($STATS_BUILT + 1))