]> code.ossystems Code Review - openembedded-core.git/commit
oe/path.py: fix for "Argument list too long"
authorRobert Yang <liezhi.yang@windriver.com>
Tue, 14 Mar 2017 08:45:45 +0000 (01:45 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 17 Mar 2017 16:52:43 +0000 (16:52 +0000)
commita3dc93eb25fba32109edd1db6e8766074fb52e4b
tree2776e7c374ae346f6fc31865425457bf512a3c74
parentf346a9bdc372ec477bafcda358f9339ff4e4c79d
oe/path.py: fix for "Argument list too long"

Issue: LIN9-1648

Fixed when len(TMPDIR) = 410:
$ bitbake core-image-sato-sdk
[snip]
Subprocess output:
/bin/sh: /bin/cp: Argument list too long

ERROR: core-image-sato-sdk-1.0-r0 do_rootfs: Function failed: do_rootfs
[snip]

This is because "copyhardlinktree(src, dst)" does "cp -afl src/* dst",
while src/* is expanded to "src/file1 src/file2, src/file3..." which
causes the "Argument list too long", use ./* as src and change cwd in
subprocess.check_output() to fix the problem.

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oe/path.py