From 7227681155df2c05705fdbcb56dacb82f93a7ecc Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Mon, 16 Jan 2017 18:04:45 +0100 Subject: [PATCH 252/257] reproduce.sh: time buildworld and buildkernel as well, consistently use -l. Squash Obtained from: ElectroBSD --- reproduce.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reproduce.sh b/reproduce.sh index cd5c5cb0a30b..325b28e21d8f 100755 --- a/reproduce.sh +++ b/reproduce.sh @@ -84,10 +84,10 @@ reproduce_all_the_things() { # We build the world first, so the kernel is built # with a freshly built toolchain. announce_status "Starting to build the world" - make -j${MAX_MAKE_JOBS} buildworld || return 1 + time -l make -j${MAX_MAKE_JOBS} buildworld || return 1 announce_status "Starting to build the kernel" - make buildkernel || return 1 + time -l make buildkernel || return 1 # Make sure obj files aren't dumped in ${SRC_DIR} mkdir -p "${release_dir}" || return 1 @@ -97,8 +97,8 @@ reproduce_all_the_things() { make -C "${SRC_DIR}/release" clean fi announce_status "Starting to build the release" - time make -C "${SRC_DIR}/release" \ - memstick XZ_THREADS=${XZ_THREADS} NO_FSCHG="yes" || return 1 + time -l make -C "${SRC_DIR}/release" \ + memstick XZ_THREADS=${XZ_THREADS} NO_FSCHG="yes" || return 1 announce_status "Done with release memstick for ${REPRO_SEED}" -- 2.11.0