3
0
Fork 0

Merge pull request #273 from kiwix/no_rpath

Remove rpath in installed binaries.
fix-bug-pid
Matthieu Gautier 7 years ago committed by GitHub
commit 14b0b901f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

@ -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)

@ -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)

@ -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)

Loading…
Cancel
Save