diff options
author | Phil Blundell <pb@pbcl.net> | 2013-04-24 16:15:54 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-29 14:45:06 +0100 |
commit | ac273d65641771f4516a88097c244d9ff643978b (patch) | |
tree | 53bc69545ea12a5c2658b6b9bf9447cd756472fe | |
parent | f2f835632c0ca5cc6cd3fcec91e4890ecb041698 (diff) | |
download | poky-ac273d65641771f4516a88097c244d9ff643978b.tar.gz |
gdb-cross: Adjust ${datadir} to avoid file conflicts in sysroot
GDB wants to install a bunch of files in ${datadir}/gdb/python/gdb
and ${datadir}/gdb/syscalls. These pathnames are invariant with
TARGET_ARCH which means that if you build gdb multiple times for
different targets they will all try to write to the same location
and you get a lot of warning spew about manifest conflicts.
Prevent this by factoring the target specification into ${datadir}
so that different copies of GDB install their files into different
paths.
(From OE-Core rev: 3e87aba1ee2ca0e39ba66fb7cba52e48df499c23)
Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/gdb/gdb-cross.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-cross.inc b/meta/recipes-devtools/gdb/gdb-cross.inc index 33feb581aa..a92d03222b 100644 --- a/meta/recipes-devtools/gdb/gdb-cross.inc +++ b/meta/recipes-devtools/gdb/gdb-cross.inc | |||
@@ -10,3 +10,5 @@ GDBPROPREFIX = "" | |||
10 | 10 | ||
11 | inherit cross | 11 | inherit cross |
12 | inherit gettext | 12 | inherit gettext |
13 | |||
14 | datadir .= "/gdb-${TUNE_PKGARCH}${TARGET_VENDOR}-${TARGET_OS}" | ||