Merge pull request #273 from kiwix/no_rpath

Remove rpath in installed binaries.
This commit is contained in:
Matthieu Gautier 2019-04-04 12:12:13 +02:00 committed by GitHub
commit 14b0b901f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 8 deletions

View File

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

View File

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

View File

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

View File

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