From 085e17cd4ad1d1a803117465012f9f22b5d09449 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Fri, 27 Jun 2014 10:48:54 -0500 Subject: 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 Signed-off-by: Richard Purdie --- conf/machine-sdk/i686-mingw32.conf | 4 +++- conf/machine-sdk/x86_64-mingw32.conf | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'conf/machine-sdk') 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" # Do what amounts to a NOOP SDK_PACKAGING_FUNC = "do_compile" -SDKTAROPTS_append = " -h --hard-dereference" + +# Causes an endless loop +#SDKTAROPTS_append = " -h --hard-dereference" SDKUSE_NLS = "no" 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" # Do what amounts to a NOOP SDK_PACKAGING_FUNC = "do_compile" -SDKTAROPTS_append = " -h --hard-dereference" + +# Causes an endless loop +#SDKTAROPTS_append = " -h --hard-dereference" SDKUSE_NLS = "no" -- cgit v1.2.3-54-g00ecf