r51925 - in /desktop/unstable/gnome-shell/debian: changelog rules

smcv at users.alioth.debian.org smcv at users.alioth.debian.org
Fri Jan 20 09:48:00 UTC 2017


Author: smcv
Date: Fri Jan 20 09:47:59 2017
New Revision: 51925

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=51925
Log:
Link private libraries with DT_RPATH, reverting a binutils behaviour
change (#847298) that switched -rpath to producing DT_RUNPATH,
which is not used for transitive dependencies. (Closes: #851925)

Modified:
    desktop/unstable/gnome-shell/debian/changelog
    desktop/unstable/gnome-shell/debian/rules

Modified: desktop/unstable/gnome-shell/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-shell/debian/changelog?rev=51925&op=diff
==============================================================================
--- desktop/unstable/gnome-shell/debian/changelog	[utf-8] (original)
+++ desktop/unstable/gnome-shell/debian/changelog	[utf-8] Fri Jan 20 09:47:59 2017
@@ -1,3 +1,11 @@
+gnome-shell (3.22.2-3) UNRELEASED; urgency=medium
+
+  * Link private libraries with DT_RPATH, reverting a binutils behaviour
+    change (#847298) that switched -rpath to producing DT_RUNPATH,
+    which is not used for transitive dependencies. (Closes: #851925)
+
+ -- Simon McVittie <smcv at debian.org>  Fri, 20 Jan 2017 01:27:58 +0000
+
 gnome-shell (3.22.2-2) unstable; urgency=medium
 
   [ Jeremy Bicha ]

Modified: desktop/unstable/gnome-shell/debian/rules
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gnome-shell/debian/rules?rev=51925&op=diff
==============================================================================
--- desktop/unstable/gnome-shell/debian/rules	[utf-8] (original)
+++ desktop/unstable/gnome-shell/debian/rules	[utf-8] Fri Jan 20 09:47:59 2017
@@ -5,8 +5,8 @@
 # Ensure at build time that the library has no dependencies on undefined
 # symbols, and speed up loading.
 export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,-O1 -Wl,--as-needed
-
-export LD_LIBRARY_PATH :=$(LD_LIBRARY_PATH):/usr/lib/$(DEB_HOST_MULTIARCH)/mutter
+# Work around binutils behaviour change https://bugs.debian.org/847298
+DEB_LDFLAGS_MAINT_APPEND += -Wl,--disable-new-dtags
 
 %:
 	dh $@ --with gir,gnome




More information about the pkg-gnome-commits mailing list