diff options
-rw-r--r-- | meta/classes/buildhistory.bbclass | 2 |
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() { | |||
435 | buildhistory_list_files() { | 435 | buildhistory_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 | ||
441 | buildhistory_list_pkg_files() { | 441 | buildhistory_list_pkg_files() { |