From: Phil Blundell Date: Thu, 25 Apr 2013 12:28:40 +0000 (+0100) Subject: gdb: Disable hard-coding of library rpaths X-Git-Tag: 2015-4~6698 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=3d70f28cc9612f733b835df139f31c197528677a;p=openembedded-core.git gdb: Disable hard-coding of library rpaths GDB's configury has a tendency to hard-code the path where it found libexpat using "-Wl,--rpath". This is undesirable and leads to QA warnings. Fortunately, the helpful GDB maintainers have provided a "--disable-rpath" switch to turn this behaviour off. Let's use it and profit. Signed-off-by: Phil Blundell Signed-off-by: Saul Wold --- diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index 9eb6b6065e..f574d5c163 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc @@ -42,6 +42,7 @@ EXTRA_OECONF = "--disable-gdbtk --disable-tui --disable-x --disable-werror \ --with-curses --disable-multilib --with-system-readline --disable-sim \ ${GDBPROPREFIX} ${EXPAT} \ ${@base_contains('DISTRO_FEATURES', 'multiarch', '--enable-64-bit-bfd', '', d)} \ + --disable-rpath \ " GDBPROPREFIX = "--program-prefix=''"