From 3c45576c7e87e1787bae1c0d9a11e5c18bb1453d Mon Sep 17 00:00:00 2001 From: Jacob Vosmaer Date: Thu, 14 Aug 2014 14:24:06 +0200 Subject: [PATCH] Use 'copy' instead of 'move' --- config/software/libffi.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/software/libffi.rb b/config/software/libffi.rb index bd2ea55..ef1c03f 100644 --- a/config/software/libffi.rb +++ b/config/software/libffi.rb @@ -40,7 +40,7 @@ build do # On 64-bit centos, libffi libraries are places under /embedded/lib64 # move them over to lib if rhel? && _64_bit? - move "#{install_dir}/embedded/lib64/*", "#{install_dir}/embedded/lib/" + copy "#{install_dir}/embedded/lib64/*", "#{install_dir}/embedded/lib/" delete "#{install_dir}/embedded/lib64" end end -- libgit2 0.21.2