diff options
author | Stephano Cetola <stephano.cetola@linux.intel.com> | 2016-04-13 09:13:47 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-14 10:58:28 +0100 |
commit | 6a5e2b2196e5654fc54ba5b2e51a390c966fd1b7 (patch) | |
tree | 87ab6e5b58b8e6c3d9fc9026af641b2d424fe502 /meta/lib/oe | |
parent | b7504ece784fad997e72f4cd89cdf73f24901541 (diff) | |
download | openembedded-core-contrib-6a5e2b2196e5654fc54ba5b2e51a390c966fd1b7.tar.gz |
devtool: don't copy .git when building the eSDK
When creating an eSDK ensure that any .git directories are not included.
[ YOCTO #9426 ]
Signed-off-by: Stephano Cetola <stephano.cetola@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/copy_buildsystem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/copy_buildsystem.py b/meta/lib/oe/copy_buildsystem.py index dd0e6641e3a..7b9a0ee0651 100644 --- a/meta/lib/oe/copy_buildsystem.py +++ b/meta/lib/oe/copy_buildsystem.py @@ -8,7 +8,7 @@ def _smart_copy(src, dest): # source is a file or a directory. mode = os.stat(src).st_mode if stat.S_ISDIR(mode): - shutil.copytree(src, dest, symlinks=True) + shutil.copytree(src, dest, symlinks=True, ignore=shutil.ignore_patterns('.git')) else: shutil.copyfile(src, dest) shutil.copymode(src, dest) |