diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2014-06-27 10:48:54 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-08 09:55:53 +0000 |
commit | 1c2f3d18bee9f7729460d31a062573c1a35db3e6 (patch) | |
tree | fbff1676efd77c3da7446d461702870639810390 /conf | |
parent | 7e2e23972e0b93eed7e2164036be3aa657b0e9c6 (diff) | |
download | meta-mingw-1c2f3d18bee9f7729460d31a062573c1a35db3e6.tar.gz |
machine-sdk/*-mingw32.conf: Disable SDKTAROPTS
Adding the SDKTAROPTS can result in either a failure or an endless loop when
generating the SDK tarball. This is due to potential recursive symlinks
within the cross compiler directory structure.
It also means files from places /var/log on the build system can be pulled
into the sdk, dependning on the chosen rootfs of the target system this
is built against.
Disabling it is therefore the best opton, when post processing the tarball,
the symlinks can be dealt with accordingly but the current approach is just
dangerous.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine-sdk/i686-mingw32.conf | 4 | ||||
-rw-r--r-- | conf/machine-sdk/x86_64-mingw32.conf | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/conf/machine-sdk/i686-mingw32.conf b/conf/machine-sdk/i686-mingw32.conf index d302660..2567e26 100644 --- a/conf/machine-sdk/i686-mingw32.conf +++ b/conf/machine-sdk/i686-mingw32.conf | |||
@@ -16,7 +16,9 @@ ALLOW_EMPTY_${PN}_mingw32 = "1" | |||
16 | 16 | ||
17 | # Do what amounts to a NOOP | 17 | # Do what amounts to a NOOP |
18 | SDK_PACKAGING_FUNC = "do_compile" | 18 | SDK_PACKAGING_FUNC = "do_compile" |
19 | SDKTAROPTS_append = " -h --hard-dereference" | 19 | |
20 | # Causes an endless loop | ||
21 | #SDKTAROPTS_append = " -h --hard-dereference" | ||
20 | 22 | ||
21 | SDKUSE_NLS = "no" | 23 | SDKUSE_NLS = "no" |
22 | 24 | ||
diff --git a/conf/machine-sdk/x86_64-mingw32.conf b/conf/machine-sdk/x86_64-mingw32.conf index 3c6a3c5..6a66b60 100644 --- a/conf/machine-sdk/x86_64-mingw32.conf +++ b/conf/machine-sdk/x86_64-mingw32.conf | |||
@@ -16,7 +16,9 @@ ALLOW_EMPTY_${PN}_mingw32 = "1" | |||
16 | 16 | ||
17 | # Do what amounts to a NOOP | 17 | # Do what amounts to a NOOP |
18 | SDK_PACKAGING_FUNC = "do_compile" | 18 | SDK_PACKAGING_FUNC = "do_compile" |
19 | SDKTAROPTS_append = " -h --hard-dereference" | 19 | |
20 | # Causes an endless loop | ||
21 | #SDKTAROPTS_append = " -h --hard-dereference" | ||
20 | 22 | ||
21 | SDKUSE_NLS = "no" | 23 | SDKUSE_NLS = "no" |
22 | 24 | ||