All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libgcc-common: Fix file ownership for installed files
@ 2015-01-19 14:27 Daniel Dragomir
  2015-01-20 15:55 ` Burton, Ross
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Dragomir @ 2015-01-19 14:27 UTC (permalink / raw)
  To: openembedded-core

Fix two QA warnings caused by setting the wrong user and group for
files installed in the destination directory on do_install task.

WARNING: log_check: There is a warn message in the logfile
WARNING: log_check: Matched keyword: [warn]
WARNING: log_check: warning: user xxxx does not exist - using root

WARNING: log_check: There is a warn message in the logfile
WARNING: log_check: Matched keyword: [warn]
WARNING: log_check: warning: group xxxx does not exist - using root

Signed-off-by: Daniel Dragomir <daniel.dragomir@windriver.com>
---
 meta/recipes-devtools/gcc/libgcc-common.inc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta/recipes-devtools/gcc/libgcc-common.inc b/meta/recipes-devtools/gcc/libgcc-common.inc
index c81a80c..eba8ec2 100644
--- a/meta/recipes-devtools/gcc/libgcc-common.inc
+++ b/meta/recipes-devtools/gcc/libgcc-common.inc
@@ -41,6 +41,8 @@ do_install () {
 	# as well as target gcc and they are identical so we dont
 	# ship one with libgcc here
 	rm -rf ${D}${libdir}/${TARGET_SYS}/${BINV}/include
+	
+	chown -R root:root ${D}
 }
 
 BBCLASSEXTEND = "nativesdk"
-- 
1.8.1.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-01-22 13:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-19 14:27 [PATCH] libgcc-common: Fix file ownership for installed files Daniel Dragomir
2015-01-20 15:55 ` Burton, Ross
2015-01-22 13:32   ` Dragomir, Daniel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.