Commit 3c45576c7e87e1787bae1c0d9a11e5c18bb1453d
1 parent
b729c45d
Exists in
master
and in
2 other branches
Use 'copy' instead of 'move'
See: https://github.com/opscode/omnibus-software/pull/277
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
config/software/libffi.rb
... | ... | @@ -40,7 +40,7 @@ build do |
40 | 40 | # On 64-bit centos, libffi libraries are places under /embedded/lib64 |
41 | 41 | # move them over to lib |
42 | 42 | if rhel? && _64_bit? |
43 | - move "#{install_dir}/embedded/lib64/*", "#{install_dir}/embedded/lib/" | |
43 | + copy "#{install_dir}/embedded/lib64/*", "#{install_dir}/embedded/lib/" | |
44 | 44 | delete "#{install_dir}/embedded/lib64" |
45 | 45 | end |
46 | 46 | end | ... | ... |