Hello community,
here is the log from the commit of package gettext-runtime for openSUSE:Factory
checked in at 2015-09-08 17:36:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gettext-runtime (Old)
and /work/SRC/openSUSE:Factory/.gettext-runtime.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gettext-runtime"
Changes:
--------
gettext-java.changes: same change
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime-mini.changes
2015-08-21 07:34:55.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-runtime-mini.changes
2015-09-08 17:37:36.000000000 +0200
@@ -1,0 +2,8 @@
+Mon Aug 24 15:37:36 UTC 2015 - [email protected]
+
+- add patch: boo941649-unnessary-rpath-on-standard-path.patch
+ * config.rpath from gettext-tools will set rpath for ELF binaries
+ not in /usr/lib, even if it's the standard path the linker
+ would search anyway.
+
+-------------------------------------------------------------------
--- /work/SRC/openSUSE:Factory/gettext-runtime/gettext-runtime.changes
2015-08-21 07:34:55.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.gettext-runtime.new/gettext-runtime.changes
2015-09-08 17:37:36.000000000 +0200
@@ -1,0 +2,8 @@
+Mon Aug 24 15:35:02 UTC 2015 - [email protected]
+
+- add patch: boo941629-unnessary-rpath-on-standard-path.patch
+ * config.rpath from gettext-tools will set rpath for ELF binaries
+ not in /usr/lib, even if it's the standard path the linker
+ would search anyway.
+
+-------------------------------------------------------------------
New:
----
boo941629-unnessary-rpath-on-standard-path.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
gettext-java.spec: same change
++++++ gettext-runtime-mini.spec ++++++
--- /var/tmp/diff_new_pack.n1afbP/_old 2015-09-08 17:37:51.000000000 +0200
+++ /var/tmp/diff_new_pack.n1afbP/_new 2015-09-08 17:37:51.000000000 +0200
@@ -70,6 +70,8 @@
Patch9: gettext-needlessly_init_vars.patch
# PATCH-FIX-OPENSUSE gettext-0.19.5.1-gettextize.diff -- [email protected]
Patch10: gettext-0.19.5.1-gettextize.diff
+# PATCH-FIX-UPSTREAM boo#941629 -- [email protected]
+Patch11: boo941629-unnessary-rpath-on-standard-path.patch
%description
This package contains the intl library as well as tools that ease the
@@ -128,6 +130,7 @@
%patch6 -p1
%patch9
%patch10 -p1
+%patch11 -p1
%build
# expect a couple "You should update your `aclocal.m4' by running aclocal."
gettext-runtime.spec: same change
++++++ boo941629-unnessary-rpath-on-standard-path.patch ++++++
Index: gettext-0.19.5.1/build-aux/config.rpath
===================================================================
--- gettext-0.19.5.1.orig/build-aux/config.rpath
+++ gettext-0.19.5.1/build-aux/config.rpath
@@ -216,7 +216,9 @@ if test "$with_gnu_ld" = yes; then
;;
gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
- :
+ if $libdir == /usr/lib | $libdir == /usr/lib64; then
+ hardcode_libdir_flag_spec=""
+ fi
else
ld_shlibs=no
fi