File: set_rpath.patch

package info (click to toggle)
ugene 52.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 133,376 kB
  • sloc: cpp: 747,593; xml: 212,891; ansic: 82,871; javascript: 5,416; yacc: 1,768; sh: 1,256; python: 771; perl: 226; makefile: 37
file content (34 lines) | stat: -rw-r--r-- 840 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Description: setting the rpath so that private shared libraries are found
Author: Pierre Gruet <pgt@debian.org>
Forwarded: not-needed
Last-Update: 2023-12-12

--- a/src/ugenecl/ugenecl.pri
+++ b/src/ugenecl/ugenecl.pri
@@ -46,5 +46,5 @@
 }
 
 unix {
-    !macx: QMAKE_LFLAGS += "-Wl,-rpath,\'\$$ORIGIN\'"
+    !macx: QMAKE_LFLAGS += "-Wl,-rpath,\'\$$ORIGIN/../lib/ugene\'"
 }
--- a/src/ugenem/ugenem.pro
+++ b/src/ugenem/ugenem.pro
@@ -43,7 +43,7 @@
 }
 
 unix {
-    !macx: QMAKE_LFLAGS += "-Wl,-rpath,\'\$$ORIGIN\'"
+    !macx: QMAKE_LFLAGS += "-Wl,-rpath,\'\$$ORIGIN/../lib/ugene\'"
 }
 
 unix_not_mac() : LIBS += -lX11
--- a/src/ugeneui/ugeneui.pri
+++ b/src/ugeneui/ugeneui.pri
@@ -61,5 +61,5 @@
 }
 
 unix {
-    !macx: QMAKE_LFLAGS += "-Wl,-rpath,\'\$$ORIGIN\'"
+    !macx: QMAKE_LFLAGS += "-Wl,-rpath,\'\$$ORIGIN/../lib/ugene\'"
 }