From b06d59fcb29dbae115a58430e17a87f1d62c90d3 Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 21 Oct 2014 15:01:24 +0800 Subject: [PATCH] linux: Add libdbus-1-dev as requirement --- docs/development/build-instructions-linux.md | 2 +- script/cibuild | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/development/build-instructions-linux.md b/docs/development/build-instructions-linux.md index d5c9883d6812..bf67f1673076 100644 --- a/docs/development/build-instructions-linux.md +++ b/docs/development/build-instructions-linux.md @@ -8,7 +8,7 @@ On Ubuntu you could install the libraries via: ```bash -$ sudo apt-get install build-essential clang libgtk2.0-dev libnotify-dev gcc-multilib g++-multilib +$ sudo apt-get install build-essential clang libdbus-1-dev libgtk2.0-dev libnotify-dev gcc-multilib g++-multilib ``` Latest Node.js could be installed via ppa: diff --git a/script/cibuild b/script/cibuild index f481c2869afe..b8939775c301 100755 --- a/script/cibuild +++ b/script/cibuild @@ -10,6 +10,7 @@ from lib.util import execute, rm_rf, scoped_env SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) LINUX_DEPS = [ + 'libdbus-1-dev', 'libgnome-keyring-dev', 'libgtk2.0-dev', 'libnotify-dev',