pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/bootstrap



Module Name:    pkgsrc
Committed By:   rillig
Date:           Sun Mar 22 16:40:19 UTC 2020

Modified Files:
        pkgsrc/bootstrap: bootstrap

Log Message:
bootstrap: create the binary packages before the summary message

It's strange to see the summary before all the actual work is done.


To generate a diff of this commit:
cvs rdiff -u -r1.275 -r1.276 pkgsrc/bootstrap/bootstrap

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/bootstrap/bootstrap
diff -u pkgsrc/bootstrap/bootstrap:1.275 pkgsrc/bootstrap/bootstrap:1.276
--- pkgsrc/bootstrap/bootstrap:1.275    Sun Mar 22 16:34:46 2020
+++ pkgsrc/bootstrap/bootstrap  Sun Mar 22 16:40:19 2020
@@ -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@localhost>
 # 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`"
 



Home | Main Index | Thread Index | Old Index