summaryrefslogtreecommitdiffstats
path: root/meta/classes/buildhistory.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/buildhistory.bbclass')
-rw-r--r--meta/classes/buildhistory.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass
index e60cdd72ba..77a3c864c3 100644
--- a/meta/classes/buildhistory.bbclass
+++ b/meta/classes/buildhistory.bbclass
@@ -435,7 +435,7 @@ buildhistory_get_sdk_installed_target() {
435buildhistory_list_files() { 435buildhistory_list_files() {
436 # List the files in the specified directory, but exclude date/time etc. 436 # List the files in the specified directory, but exclude date/time etc.
437 # This awk script is somewhat messy, but handles where the size is not printed for device files under pseudo 437 # This awk script is somewhat messy, but handles where the size is not printed for device files under pseudo
438 ( cd $1 && find . -printf "%M %-10u %-10g %10s %p -> %l\n" | sort -k5 | sed 's/ * -> $//' > $2 ) 438 ( cd $1 && find . ! -path . -printf "%M %-10u %-10g %10s %p -> %l\n" | sort -k5 | sed 's/ * -> $//' > $2 )
439} 439}
440 440
441buildhistory_list_pkg_files() { 441buildhistory_list_pkg_files() {