about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <me@tobias.gr>2016-06-21 19:25:01 +0200
committerTobias Geerinckx-Rice <me@tobias.gr>2016-06-22 03:58:55 +0200
commit271443daa1edc05576d4844711c9f8a8e93b6ece (patch)
treeda53f8462dbc360326bedee5ddc348588349c7d2
parent2a08ea94265cf2c648b979eacaa718c8f42795c9 (diff)
downloadnixlib-271443daa1edc05576d4844711c9f8a8e93b6ece.tar
nixlib-271443daa1edc05576d4844711c9f8a8e93b6ece.tar.gz
nixlib-271443daa1edc05576d4844711c9f8a8e93b6ece.tar.bz2
nixlib-271443daa1edc05576d4844711c9f8a8e93b6ece.tar.lz
nixlib-271443daa1edc05576d4844711c9f8a8e93b6ece.tar.xz
nixlib-271443daa1edc05576d4844711c9f8a8e93b6ece.tar.zst
nixlib-271443daa1edc05576d4844711c9f8a8e93b6ece.zip
gobject-introspection: remove unused separate-rpath-arg.patch
-rw-r--r--pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch b/pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch
deleted file mode 100644
index 1f25aa1f8987..000000000000
--- a/pkgs/development/libraries/gobject-introspection/separate-rpath-arg.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur gobject-introspection-1.46.0-orig/giscanner/ccompiler.py gobject-introspection-1.46.0/giscanner/ccompiler.py
---- gobject-introspection-1.46.0-orig/giscanner/ccompiler.py	2016-02-01 12:25:41.000000000 -0500
-+++ gobject-introspection-1.46.0/giscanner/ccompiler.py	2016-02-01 12:26:52.000000000 -0500
-@@ -128,7 +128,7 @@
-                     self.compiler.add_runtime_library_dir('.')
- 
-                 # https://bugzilla.gnome.org/show_bug.cgi?id=625195
--                args.append('-Wl,-rpath=.')
-+                args.append('-Wl,-rpath,.')
- 
-                 # Ensure libraries are always linked as we are going to use ldd to work
-                 # out their names later
-@@ -140,7 +140,7 @@
-                 for library_path in libpaths:
-                     args.append('-L' + library_path)
-                     if os.path.isabs(library_path):
--                        args.append('-Wl,-rpath=' + library_path)
-+                        args.append('-Wl,-rpath,' + library_path)
- 
-         else:
-             # libtool case: assemble linker command arguments, like we did before