From bbd3f92fcc8a83662928ab9f13f88bcac7c68e47 Mon Sep 17 00:00:00 2001 From: James Allen Date: Fri, 15 Aug 2014 13:36:32 +0100 Subject: [PATCH] Include build-essentials --- server-ce/Gruntfile.coffee | 8 +++++--- server-ce/chef/cookbooks/packages/recipes/default.rb | 3 ++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/server-ce/Gruntfile.coffee b/server-ce/Gruntfile.coffee index e4c04601f3..f97ee5c0c2 100644 --- a/server-ce/Gruntfile.coffee +++ b/server-ce/Gruntfile.coffee @@ -247,9 +247,11 @@ module.exports = (grunt) -> Either aspell is not installed or is not in your PATH. On Ubuntu you can install aspell with: + sudo apt-get install aspell Or on a mac: + brew install aspell This is not a fatal error, but the spell-checker will not work @@ -330,11 +332,11 @@ module.exports = (grunt) -> grunt.log.error "FAIL." grunt.log.errorlns """ Either make is not installed or is not in your path. - + On Ubuntu you can install make with: - + sudo apt-get install build-essential - + """ return callback(error) else if error? diff --git a/server-ce/chef/cookbooks/packages/recipes/default.rb b/server-ce/chef/cookbooks/packages/recipes/default.rb index 1933cf3951..f1c9024aad 100644 --- a/server-ce/chef/cookbooks/packages/recipes/default.rb +++ b/server-ce/chef/cookbooks/packages/recipes/default.rb @@ -6,4 +6,5 @@ # package 'git' -package 'vim' \ No newline at end of file +package 'vim' +package 'build-essential' \ No newline at end of file