Remove rpath in installed binaries.

Fix #250
This commit is contained in:
Matthieu Gautier 2019-04-02 17:53:27 +02:00
parent 26b4dd5f57
commit 336cbe691d
4 changed files with 4 additions and 8 deletions

View File

@ -1,4 +1,3 @@
executable('kiwix-manage', ['kiwix-manage.cpp'], executable('kiwix-manage', ['kiwix-manage.cpp'],
dependencies:all_deps, dependencies:all_deps,
install:true, install:true)
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))

View File

@ -1,4 +1,3 @@
executable('kiwix-read', ['kiwix-read.cpp'], executable('kiwix-read', ['kiwix-read.cpp'],
dependencies:all_deps, dependencies:all_deps,
install:true, install:true)
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))

View File

@ -1,4 +1,3 @@
executable('kiwix-search', ['kiwix-search.cpp'], executable('kiwix-search', ['kiwix-search.cpp'],
dependencies:all_deps, dependencies:all_deps,
install:true, install:true)
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))

View File

@ -4,5 +4,4 @@ sources += server_resources
executable('kiwix-serve', sources, executable('kiwix-serve', sources,
dependencies:all_deps, dependencies:all_deps,
install:true, install:true)
install_rpath: join_paths(get_option('prefix'), get_option('libdir')))