From 1c2f3d18bee9f7729460d31a062573c1a35db3e6 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(-) 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" # 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 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" # 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