From 54169cf2fda75f267d5e5ae9e391ce7ff41419dc Mon Sep 17 00:00:00 2001 Message-Id: <54169cf2fda75f267d5e5ae9e391ce7ff41419dc.1714846542.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 6 May 2018 10:14:16 +0100 Subject: [PATCH] scripts/setup-ubuntu.sh: Huh. We only have Python 3.5 here. Organization: Straylight/Edgeware From: Mark Wooding Fix. --- scripts/setup-ubuntu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/setup-ubuntu.sh b/scripts/setup-ubuntu.sh index 35451780..8eb90d5a 100755 --- a/scripts/setup-ubuntu.sh +++ b/scripts/setup-ubuntu.sh @@ -19,7 +19,7 @@ PACKAGES+=" libglib2.0-dev" # Provides 'glib-genmarshal' which the glib build us PACKAGES+=" libtool-bin" PACKAGES+=" libncurses5-dev" # Used by mariadb for host build part. PACKAGES+=" lzip" -PACKAGES+=" python3.6" +PACKAGES+=" python3.5" PACKAGES+=" tar" PACKAGES+=" unzip" PACKAGES+=" m4" -- [mdw]