From b77bebd7f304a1c19ae8ef6ee7cb3c9ff9427922 Mon Sep 17 00:00:00 2001 From: Mitchel Humpherys Date: Tue, 2 Jan 2018 10:51:54 -0800 Subject: [PATCH] configure: Handle non-apt systems If apt-get is not found on the host just exit with a message about installing dependencies. --- configure | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure b/configure index 6814a4c..795ef22 100755 --- a/configure +++ b/configure @@ -36,6 +36,16 @@ gcc-arm-linux-gnueabi \ libgoogle-perftools-dev \ protobuf-compiler \ " +command -v apt-get >/dev/null 2>&1 || { + cat <