summaryrefslogtreecommitdiff
path: root/bootstrap/bootstrap
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2020-03-22 16:40:19 +0000
committerrillig <rillig@pkgsrc.org>2020-03-22 16:40:19 +0000
commit7baff7a0810af24969e901ffb7c388df6ffcc0ed (patch)
treefb617cc5d55d8d2089de739c1a72ab07032c63b1 /bootstrap/bootstrap
parent7989584ccf21a4bd21b2f1938be5490515e6f8ff (diff)
downloadpkgsrc-7baff7a0810af24969e901ffb7c388df6ffcc0ed.tar.gz
bootstrap: create the binary packages before the summary message
It's strange to see the summary before all the actual work is done.
Diffstat (limited to 'bootstrap/bootstrap')
-rwxr-xr-xbootstrap/bootstrap10
1 files changed, 5 insertions, 5 deletions
diff --git a/bootstrap/bootstrap b/bootstrap/bootstrap
index 43e0a71c12d..438deaa5d75 100755
--- a/bootstrap/bootstrap
+++ b/bootstrap/bootstrap
@@ -1,6 +1,6 @@
#! /bin/sh
-# $NetBSD: bootstrap,v 1.275 2020/03/22 16:34:46 rillig Exp $
+# $NetBSD: bootstrap,v 1.276 2020/03/22 16:40:19 rillig Exp $
#
# Copyright (c) 2001-2011 Alistair Crooks <agc@NetBSD.org>
# All rights reserved.
@@ -1428,6 +1428,10 @@ if [ ! -f "$etc_mk_conf" ]; then
TARGET_MKCONF="$etc_mk_conf"
fi
+[ -n "${binary_kit}" ] && mkbinarykit_tar
+[ -n "${binary_gzip_kit}" ] && mkbinarykit_tgz
+[ -n "${binary_macpkg}" ] && mkbinarykit_macpkg
+
hline="==========================================================================="
echo ""
echo "$hline"
@@ -1452,10 +1456,6 @@ echo ""
echo "$hline"
echo ""
-[ -n "${binary_kit}" ] && mkbinarykit_tar
-[ -n "${binary_gzip_kit}" ] && mkbinarykit_tgz
-[ -n "${binary_macpkg}" ] && mkbinarykit_macpkg
-
echo_msg "bootstrap started: $build_start"
echo_msg "bootstrap ended: `date`"