diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-08-03 17:15:56 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-08-07 12:21:24 +0200 |
commit | c5c0635ebfda0b09acdbb5bfb59e1e4056f3f8a5 (patch) | |
tree | 8d889ec404788147a9556f7eb1d70ce205fd4055 /meta-oe | |
parent | 5d9de465ca73850bea3f0b76de3d74d6ab6f9b4b (diff) | |
download | meta-openembedded-c5c0635ebfda0b09acdbb5bfb59e1e4056f3f8a5.tar.gz |
postgresql: Fix redundant rpath for '/usr/lib'
This patch fixes the following QA issue:
,----[ Fragment of build error log ]
| ...
| ERROR: QA Issue: postgresql-client:
| /work/.../usr/bin/pg_dumpall contains probably-redundant
| RPATH /usr/lib
| ...
`----
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Reported-by: Nathan West <nate.ewest@gmail.com>
Reported-by: Rogerio Pimentel <rogerio.pimentel@freescale.com>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe')
-rw-r--r-- | meta-oe/recipes-support/postgresql/postgresql.inc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/postgresql/postgresql.inc b/meta-oe/recipes-support/postgresql/postgresql.inc index ab6aea457..01c41c12e 100644 --- a/meta-oe/recipes-support/postgresql/postgresql.inc +++ b/meta-oe/recipes-support/postgresql/postgresql.inc | |||
@@ -2,7 +2,7 @@ DESCRIPTION = "PostgreSQL is a powerful, open source relational database system. | |||
2 | HOMEPAGE = "http://www.postgresql.com" | 2 | HOMEPAGE = "http://www.postgresql.com" |
3 | LICENSE = "BSD" | 3 | LICENSE = "BSD" |
4 | DEPENDS = "zlib readline tzcode-native" | 4 | DEPENDS = "zlib readline tzcode-native" |
5 | INC_PR = "r6" | 5 | INC_PR = "r7" |
6 | 6 | ||
7 | ARM_INSTRUCTION_SET = "arm" | 7 | ARM_INSTRUCTION_SET = "arm" |
8 | 8 | ||
@@ -17,7 +17,8 @@ export LDFLAGS_SL = "${LDFLAGS}" | |||
17 | 17 | ||
18 | inherit autotools pkgconfig | 18 | inherit autotools pkgconfig |
19 | 19 | ||
20 | EXTRA_OECONF_sh4 = "--disable-spinlocks" | 20 | EXTRA_OECONF = "--disable-rpath" |
21 | EXTRA_OECONF_sh4 = "--disable-spinlocks --disable-rpath" | ||
21 | 22 | ||
22 | do_compile_append() { | 23 | do_compile_append() { |
23 | cp /usr/sbin/zic ${S}/src/timezone/ | 24 | cp /usr/sbin/zic ${S}/src/timezone/ |