From 41b2727a7462a157e8047b7ca45da49e3e6d0427 Mon Sep 17 00:00:00 2001 From: Leonid Pliushch Date: Sat, 26 Jan 2019 17:02:21 +0200 Subject: [PATCH] setup-ubuntu.sh: install "devscripts" Makes utility "debdiff" available. --- scripts/setup-ubuntu.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index 1c8102538..160c92b75 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -38,6 +38,7 @@ PACKAGES+=" libjpeg-dev" # Needed by ghostscript PACKAGES+=" gawk" # Needed by apr-util PACKAGES+=" libssl-dev" # Needed to build Rust PACKAGES+=" gnupg" # Needed to verify downloaded .debs +PACKAGES+=" devscripts" # Provides utility "debdiff". sudo DEBIAN_FRONTEND=noninteractive \ apt-get install -yq --no-install-recommends $PACKAGES