Install ia32-libs on 64 bit vm only (I think)

I think this will work, but I haven't tested it yet. It's required
because all the android sdk tools (e.g. aapt) are 32 bit binaries.
This commit is contained in:
Ciaran Gultnieks 2013-05-25 14:01:49 +01:00
parent 6f72af39fe
commit c25a0ee681

View file

@ -18,3 +18,11 @@ end
end
end
if node['kernel']['machine'] == "x86_64"
%w{ia32-libs}.each do |pkg|
package pkg do
action :install
end
end
end