diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-03-23 09:01:30 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-03-23 09:01:30 (GMT) |
commit | fd0df8f884336fc69bd0938453f9712c166f08c8 (patch) | |
tree | f24313aa72a50d41b8076cf6b257129530bf562e /plugins/dex | |
parent | 03d5e6abfce49d4a18bbf70cbbaa3be8c58bf5b4 (diff) |
Removed references to local sources if required.
Diffstat (limited to 'plugins/dex')
-rw-r--r-- | plugins/dex/Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/dex/Makefile.am b/plugins/dex/Makefile.am index 9b6cb72..7bdf930 100644 --- a/plugins/dex/Makefile.am +++ b/plugins/dex/Makefile.am @@ -8,9 +8,18 @@ if BUILD_PYTHON3_BINDINGS PYTHON3_LIBADD = python/libdexpython.la +if BUILD_DISCARD_LOCAL + +PYTHON3_LDFLAGS = -Wl,-rpath,$(pluginslibdir) \ + -L$(top_srcdir)/plugins/pychrysalide/.libs -l:pychrysalide.so + +else + PYTHON3_LDFLAGS = -Wl,-rpath,$(abs_top_srcdir)/plugins/pychrysalide/.libs \ -L$(top_srcdir)/plugins/pychrysalide/.libs -l:pychrysalide.so +endif + PYTHON3_SUBDIRS = python endif |