From 4f7fb37a87e7d63a7419e480ea403aa02a2ce900 Mon Sep 17 00:00:00 2001 From: Jackie Huang Date: Mon, 30 May 2016 04:37:47 -0400 Subject: java.bbclass: change a warning message to note The logic is to check if the destination file exists before create the symlink, and give a message about removing the existing file, it's harmless and not necessary to be a warning. Signed-off-by: Jackie Huang Signed-off-by: Otavio Salvador --- classes/java.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/java.bbclass b/classes/java.bbclass index ab51787..fc97295 100644 --- a/classes/java.bbclass +++ b/classes/java.bbclass @@ -58,7 +58,7 @@ oe_jarinstall() { # Creates symlinks out of the remaining arguments. while [ "$#" -gt 0 ]; do if [ -e $dir/$1 -o -h $dir/$1 ]; then - bbwarn "file was in the way. removing:" $dir/$1 + bbnote "file was in the way. removing:" $dir/$1 rm $dir/$1 fi ln -s $destname $dir/$1 -- cgit v1.2.3-54-g00ecf