From f84bfdfe390bced473da04655097e8e82be040fd Mon Sep 17 00:00:00 2001 From: Richard Hoberman Date: Fri, 5 Jun 2015 14:30:08 +0100 Subject: [PATCH] Set prefix_dir attribute correctly for amazon platform --- attributes/default.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/attributes/default.rb b/attributes/default.rb index 699df21..bc12f9b 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -24,6 +24,8 @@ case platform when "smartos" default['python']['prefix_dir'] = '/opt/local' + when "amazon" + default['python']['prefix_dir'] = '/usr/local' else default['python']['prefix_dir'] = '/usr' end