Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c532d43

Browse files
captnswingjtimberman
authored and
jtimberman
committed
fixed install method in source recipe as not to overwrite pre-existing system python version
1 parent 56f8fab commit c532d43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

recipes/source.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
code <<-EOF
4747
tar -jxvf Python-#{version}.tar.bz2
4848
(cd Python-#{version} && ./configure #{configure_options})
49-
(cd Python-#{version} && make && make install)
49+
(cd Python-#{version} && make && make altinstall)
5050
EOF
5151
not_if { ::File.exists?(install_path) }
5252
end

0 commit comments

Comments
 (0)