diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2021-04-17 13:56:56 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2021-04-17 13:56:56 (GMT) |
commit | 58afc7858cffe180bafbae306db6be66d313b74b (patch) | |
tree | 6ccba3064e1b1d49faf1099d3d6fe3c600192819 /plugins/readdex | |
parent | b25638b8b13ffa833414c6a7c48fffdac12eda61 (diff) |
Remove hardcoded run paths from libraries.
Diffstat (limited to 'plugins/readdex')
-rw-r--r-- | plugins/readdex/Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/plugins/readdex/Makefile.am b/plugins/readdex/Makefile.am index e4d961a..b21f855 100644 --- a/plugins/readdex/Makefile.am +++ b/plugins/readdex/Makefile.am @@ -4,6 +4,17 @@ lib_LTLIBRARIES = libreaddex.la libdir = $(pluginslibdir) +if BUILD_PYTHON_PACKAGE + +RUN_PATH = -Wl,-rpath,'$$ORIGIN/../chrysalide-libs:$$ORIGIN' + +else + +RUN_PATH = -Wl,-rpath,'$$ORIGIN' + +endif + + libreaddex_la_SOURCES = \ class.h class.c \ code.h code.c \ @@ -12,9 +23,11 @@ libreaddex_la_SOURCES = \ reader.h reader.c libreaddex_la_LDFLAGS = \ + -avoid-version \ -L$(top_srcdir)/src/.libs -lchrysacore \ -L$(top_srcdir)/plugins/dex/.libs -ldex \ - -L$(top_srcdir)/plugins/fmtp/.libs -lfmtp + -L$(top_srcdir)/plugins/fmtp/.libs -lfmtp \ + $(RUN_PATH) devdir = $(includedir)/chrysalide/$(subdir) |