commit:     a1053d8418f8496d0cffec41f57f801708577455
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 29 00:23:14 2015 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Wed Jul 29 00:23:14 2015 +0000
URL:        https://gitweb.gentoo.org/proj/grss.git/commit/?id=a1053d84

grs/Kernel.py: rsync was clobbering lib -> lib64, not tar.

 grs/Kernel.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/grs/Kernel.py b/grs/Kernel.py
index c9a99d8..cec4a5f 100644
--- a/grs/Kernel.py
+++ b/grs/Kernel.py
@@ -106,7 +106,7 @@ class Kernel():
                     Execute(cmd)
 
         # Copy the newly compiled kernel image and modules to portage 
configroot
-        cmd = 'rsync -a %s/ %s' % (image_dir, self.portage_configroot)
+        cmd = 'rsync -aK %s/ %s' % (image_dir, self.portage_configroot)
         Execute(cmd, timeout=60, logfile=self.logfile)
 
         # Tar up the kernel image and modules and place them in 
package/linux-images

Reply via email to