diff options
author | Rod Whitby <rod@whitby.id.au> | 2005-07-17 13:15:49 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-07-17 13:15:49 +0000 |
commit | 04a269c583bc9586020846c8668d847b5de6095f (patch) | |
tree | caa1b30aa5548b9f44e99043787c0b30b26ae105 /packages/util-linux | |
parent | db5f69fd2cc3ca3053b899237dfde27ed9134950 (diff) | |
parent | 3143c04f905275f5f07c4147c914e7f859b5fd7d (diff) |
merge of e74c73570c2c682aebf3f9050ed959e4f615d79e
and efd8c005871477b3c2788c1257799459527dd028
Diffstat (limited to 'packages/util-linux')
-rw-r--r-- | packages/util-linux/util-linux.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/util-linux/util-linux.inc b/packages/util-linux/util-linux.inc index df97498c49..5d4ed8063a 100644 --- a/packages/util-linux/util-linux.inc +++ b/packages/util-linux/util-linux.inc @@ -33,5 +33,10 @@ do_compile () { } do_install () { - oe_runmake 'DESTDIR=${D}' install + # with ccache the timestamps on compiled files may + # end up earlier than on their inputs, this allows + # for the resultant compilation in the install step. + oe_runmake ARCH=${TARGET_ARCH} CPU= CPUOPT= \ + 'OPT=${CFLAGS}' 'CC=${CC}' 'LD=${LD}' \ + 'LDFLAGS=${LDFLAGS}' 'DESTDIR=${D}' install } |