diff options
author | Julian Pidancet <julian.pidancet@gmail.com> | 2011-10-26 22:41:23 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-10-27 08:34:45 +0100 |
commit | fa1eb21933a880aa20e4ca87574753b1ec272c3b (patch) | |
tree | 0786e5ed21375627c74c18b6d10264b3ce11e716 /meta/recipes-core | |
parent | 47c7f5a6f022dca10ae63851c7d9c14ee06f0c0b (diff) | |
download | openembedded-core-fa1eb21933a880aa20e4ca87574753b1ec272c3b.tar.gz openembedded-core-fa1eb21933a880aa20e4ca87574753b1ec272c3b.tar.bz2 openembedded-core-fa1eb21933a880aa20e4ca87574753b1ec272c3b.tar.xz openembedded-core-fa1eb21933a880aa20e4ca87574753b1ec272c3b.zip |
Give coreutils a chance to build the df utility
The coreutils configure script is unable determine how to get free
space from the Operating System when cross-compiling.
This changes caches the result of the "statfs2_bsize" test for the
coreutils configure script.
Both glibc and uclibc defines statfs as a two-argument function
and uses a struct statfs containing a f_bsize field. That's why
the fu_cv_sys_stat_statfs2_bsize variable has to be defined for
both libcs.
Signed-off-by: Julian Pidancet <julian.pidancet@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_8.14.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/coreutils/coreutils_8.14.bb b/meta/recipes-core/coreutils/coreutils_8.14.bb index f3b7af7d1..fa2a2c9eb 100644 --- a/meta/recipes-core/coreutils/coreutils_8.14.bb +++ b/meta/recipes-core/coreutils/coreutils_8.14.bb @@ -27,7 +27,7 @@ bindir_progs = "base64 basename chcon cksum comm csplit cut dir dircolors dirnam join link logname md5sum mkfifo mktemp nice nl nohup nproc od paste pathchk \ pinky pr printenv printf ptx readlink runcon seq sha1sum sha224sum sha256sum \ sha384sum sha512sum shred shuf sort split stat stdbuf sum tac tail tee test timeout\ - tr truncate tsort tty unexpand uniq unlink uptime users vdir wc who whoami yes" + tr truncate tsort tty unexpand uniq unlink uptime users vdir wc who whoami yes df" # hostname gets a special treatment and is not included in this base_bindir_progs = "cat chgrp chmod chown cp date dd echo false kill ln ls mkdir \ |