classes/buildhistory: trim trailing spaces in file listings
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Fri, 22 Mar 2013 19:53:53 +0000 (19:53 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 23 Mar 2013 11:41:13 +0000 (11:41 +0000)
These are mildly annoying when viewing git diffs of the buildhistory
repository, so let's just get rid of them.

(From OE-Core rev: c257f292bf75061647e380889487c7e2625592de)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/buildhistory.bbclass

index b559ebf..3892326 100644 (file)
@@ -391,7 +391,7 @@ buildhistory_get_sdk_installed() {
 buildhistory_list_files() {
        # List the files in the specified directory, but exclude date/time etc.
        # This awk script is somewhat messy, but handles where the size is not printed for device files under pseudo
-       ( cd $1 && find . -ls | awk '{ if ( $7 ~ /[0-9]/ ) printf "%s %10-s %10-s %10s %s %s %s\n", $3, $5, $6, $7, $11, $12, $13 ; else printf "%s %10-s %10-s %10s %s %s %s\n", $3, $5, $6, 0, $10, $11, $12 }' | sort -k5 > $2 )
+       ( cd $1 && find . -ls | awk '{ if ( $7 ~ /[0-9]/ ) printf "%s %10-s %10-s %10s %s %s %s\n", $3, $5, $6, $7, $11, $12, $13 ; else printf "%s %10-s %10-s %10s %s %s %s\n", $3, $5, $6, 0, $10, $11, $12 }' | sort -k5 | sed 's/ *$//' > $2 )
 }