diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2014-06-27 10:48:54 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-11-04 18:01:00 +0000 |
commit | 085e17cd4ad1d1a803117465012f9f22b5d09449 (patch) | |
tree | 7289df800623d91f4413a9eedffa02bc46747d92 /conf | |
parent | e9208b84d90cc21fa1318af1d87aef1ea04a8cb0 (diff) | |
download | meta-mingw-daisy.tar.gz |
machine-sdk/*-mingw32.conf: Disable SDKTAROPTSdaisy
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 586bfe3..7e309df 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 7d1c016..f026af4 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 | ||