diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-01-23 22:46:19 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-01-23 22:46:19 +0000 |
commit | 75f682d1f671a7b249d80b9347a6ebef260902ae (patch) | |
tree | 0debf2e02f7c6e24c650ed9e2c055af49d52c583 /meta/packages | |
parent | b9d958c186da6a3493208ee2f1dce758e11022b1 (diff) | |
download | poky-75f682d1f671a7b249d80b9347a6ebef260902ae.tar.gz |
fakeroot: Stop setting LD_LIBRARY_PATH as it breaks things (see patch description)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/packages')
-rw-r--r-- | meta/packages/fakeroot/fakeroot/absolutepaths.patch | 47 | ||||
-rw-r--r-- | meta/packages/fakeroot/fakeroot_1.9.4.bb | 5 |
2 files changed, 50 insertions, 2 deletions
diff --git a/meta/packages/fakeroot/fakeroot/absolutepaths.patch b/meta/packages/fakeroot/fakeroot/absolutepaths.patch new file mode 100644 index 0000000000..ae18e8a28c --- /dev/null +++ b/meta/packages/fakeroot/fakeroot/absolutepaths.patch | |||
@@ -0,0 +1,47 @@ | |||
1 | Image creation runs under a fakeroot context and calls a script which refers | ||
2 | to the build systems's python. This loads but can find a libpython from staging | ||
3 | if these are incompatible, anything can break. These scripts should *not* be | ||
4 | changing LD_LIBRARY_PATH, just adding an LD_PRELOAD with an absolute path. The | ||
5 | dyanmic linker can figure out anything else with rpaths. | ||
6 | |||
7 | RP - 23/1/10 | ||
8 | |||
9 | Index: fakeroot-1.9.4/configure.ac | ||
10 | =================================================================== | ||
11 | --- fakeroot-1.9.4.orig/configure.ac 2010-01-23 22:34:39.000000000 +0000 | ||
12 | +++ fakeroot-1.9.4/configure.ac 2010-01-23 22:35:14.000000000 +0000 | ||
13 | @@ -414,6 +414,8 @@ | ||
14 | ;; | ||
15 | esac | ||
16 | |||
17 | +LDPRELOADABS=1 | ||
18 | + | ||
19 | AC_DEFINE_UNQUOTED([LIBCPATH], "$libcpath", [path to libc shared object]) | ||
20 | AC_SUBST(DLSUFFIX) | ||
21 | AC_SUBST(LDLIBPATHVAR) | ||
22 | Index: fakeroot-1.9.4/scripts/fakeroot.in | ||
23 | =================================================================== | ||
24 | --- fakeroot-1.9.4.orig/scripts/fakeroot.in 2010-01-23 22:34:53.000000000 +0000 | ||
25 | +++ fakeroot-1.9.4/scripts/fakeroot.in 2010-01-23 22:37:17.000000000 +0000 | ||
26 | @@ -135,7 +135,7 @@ | ||
27 | if [ "$WAITINTRAP" -eq 0 ]; then | ||
28 | trap "kill -s @signal@ $PID" EXIT INT | ||
29 | else | ||
30 | - trap 'FAKEROOTKEY=$FAKEROOTKEY LD_LIBRARY_PATH="$PATHS" LD_PRELOAD="$LIB" /bin/ls -l / >/dev/null 2>&1; while kill -s @signal@ $PID 2>/dev/null; do sleep 0.1; done' EXIT INT | ||
31 | + trap 'FAKEROOTKEY=$FAKEROOTKEY LD_PRELOAD="$LIB" /bin/ls -l / >/dev/null 2>&1; while kill -s @signal@ $PID 2>/dev/null; do sleep 0.1; done' EXIT INT | ||
32 | fi | ||
33 | |||
34 | if test -z "$FAKEROOTKEY" || test -z "$PID"; then | ||
35 | @@ -158,10 +158,10 @@ | ||
36 | export FAKEROOT_FD_BASE | ||
37 | |||
38 | if test -z "$*"; then | ||
39 | - FAKEROOTKEY=$FAKEROOTKEY @LDLIBPATHVAR@="$PATHS" @LDEXTRAVAR@ @LDPRELOADVAR@="$LIB" ${SHELL:-/bin/sh} | ||
40 | + FAKEROOTKEY=$FAKEROOTKEY @LDEXTRAVAR@ @LDPRELOADVAR@="$LIB" ${SHELL:-/bin/sh} | ||
41 | RESULT=$? | ||
42 | else | ||
43 | - FAKEROOTKEY=$FAKEROOTKEY @LDLIBPATHVAR@="$PATHS" @LDEXTRAVAR@ @LDPRELOADVAR@="$LIB" "$@" | ||
44 | + FAKEROOTKEY=$FAKEROOTKEY @LDEXTRAVAR@ @LDPRELOADVAR@="$LIB" "$@" | ||
45 | RESULT=$? | ||
46 | fi | ||
47 | |||
diff --git a/meta/packages/fakeroot/fakeroot_1.9.4.bb b/meta/packages/fakeroot/fakeroot_1.9.4.bb index f2c3b01c85..d7545ddb26 100644 --- a/meta/packages/fakeroot/fakeroot_1.9.4.bb +++ b/meta/packages/fakeroot/fakeroot_1.9.4.bb | |||
@@ -5,10 +5,11 @@ LICENSE = "GPL" | |||
5 | # fakeroot needs getopt which is provided by the util-linux package | 5 | # fakeroot needs getopt which is provided by the util-linux package |
6 | RDEPENDS = "util-linux" | 6 | RDEPENDS = "util-linux" |
7 | RDEPENDS_virtclass-native = "util-linux-native" | 7 | RDEPENDS_virtclass-native = "util-linux-native" |
8 | PR = "r2" | 8 | PR = "r3" |
9 | 9 | ||
10 | SRC_URI = "${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.tar.gz \ | 10 | SRC_URI = "${DEBIAN_MIRROR}/main/f/fakeroot/fakeroot_${PV}.tar.gz \ |
11 | file://configure-libtool.patch;patch=1" | 11 | file://configure-libtool.patch;patch=1 \ |
12 | file://absolutepaths.patch;patch=1 " | ||
12 | 13 | ||
13 | inherit autotools_stage | 14 | inherit autotools_stage |
14 | 15 | ||