summaryrefslogtreecommitdiff
path: root/build.conf
diff options
context:
space:
mode:
authorJames McCoy <jamessan@debian.org>2018-08-01 20:44:36 -0400
committerJames McCoy <jamessan@debian.org>2019-01-20 14:55:00 -0500
commitcd5c52b9671d8fb59c0b684900a2619bc7006c0f (patch)
tree073945cc1d441a444f449eae12499f6b39f0ade2 /build.conf
parent141a04f0390554a2c17ff509c373090bbf376dfa (diff)
rpath
Prevent the linker from adding an rpath to shared libraries. Original patch by David Kimdon <dwhedon@debian.org>. The basic theory is: - Use libtool instead of apxs to install the apache modules. libtool relinks without rpath in this case, apxs obviously doesn't. Gbp-Pq: Name rpath
Diffstat (limited to 'build.conf')
-rw-r--r--build.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.conf b/build.conf
index 22bfebb..31b8060 100644
--- a/build.conf
+++ b/build.conf
@@ -568,7 +568,7 @@ lang = python
path = subversion/bindings/swig/python/libsvn_swig_py
libs = libsvn_client libsvn_wc libsvn_ra libsvn_delta libsvn_subr
apriconv apr python swig
-link-cmd = $(LINK)
+link-cmd = $(LINK_LIB)
install = swig-py-lib
# need special build rule to include -DSWIGPYTHON
compile-cmd = $(COMPILE_SWIG_PY)
@@ -594,7 +594,7 @@ type = swig_lib
lang = ruby
path = subversion/bindings/swig/ruby/libsvn_swig_ruby
libs = libsvn_client libsvn_wc libsvn_delta libsvn_subr apriconv apr ruby swig
-link-cmd = $(LINK) $(SWIG_RB_LIBS)
+link-cmd = $(LINK_LIB) $(SWIG_RB_LIBS)
install = swig-rb-lib
# need special build rule to include
compile-cmd = $(COMPILE_SWIG_RB)