From cbd14382efdd22da5c425700b5522ac3fff311e8 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Tue, 9 Nov 2021 18:29:08 +0100 Subject: [PATCH 279/325] reproduce.sh: Use time's -h flag to get more pleasant number. Squash. Obtained from: ElectroBSD --- reproduce.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reproduce.sh b/reproduce.sh index 9b7044b90b6f..445566e43a38 100755 --- a/reproduce.sh +++ b/reproduce.sh @@ -97,10 +97,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" - time -l make -j${MAX_MAKE_JOBS} buildworld || return 1 + time -h -l make -j${MAX_MAKE_JOBS} buildworld || return 1 announce_status "Starting to build the kernel" - time -l make buildkernel || return 1 + time -h -l make buildkernel || return 1 # Make sure obj files aren't dumped in ${SRC_DIR} mkdir -p "${release_dir}" || return 1 @@ -110,7 +110,7 @@ reproduce_all_the_things() { make -C "${SRC_DIR}/release" clean fi announce_status "Starting to build the release" - time -l make -C "${SRC_DIR}/release" \ + time -h -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.32.0