From d275a23a81b8ffbbd76e58bd27cc6037fd274cea Mon Sep 17 00:00:00 2001 From: James Shubin Date: Wed, 21 Feb 2018 22:47:01 -0500 Subject: [PATCH] misc: Add dependency on time package Some environments apparently don't have this installed. We have it in certain places where we like to time things. --- misc/make-deps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/misc/make-deps.sh b/misc/make-deps.sh index b582e577..f7fb5f84 100755 --- a/misc/make-deps.sh +++ b/misc/make-deps.sh @@ -30,7 +30,7 @@ fi if [ ! -z "$YUM" ]; then $sudo_command $YUM install -y libvirt-devel $sudo_command $YUM install -y augeas-devel - + $sudo_command $YUM install -y time fi if [ ! -z "$APT" ]; then $sudo_command $APT install -y libvirt-dev || true @@ -42,6 +42,7 @@ if [ ! -z "$APT" ]; then # (-f is missing on BSD/macOS), but older Debian/Ubuntu's don't include it in coreutils yet. # https://unix.stackexchange.com/a/136527 $sudo_command $APT install -y realpath || true + $sudo_command $APT install -y time || true fi if [ ! -z "$BREW" ]; then