diff options
author | Felipe Sateler <fsateler@gmail.com> | 2016-07-03 18:56:54 -0400 |
---|---|---|
committer | Felipe Sateler <fsateler@gmail.com> | 2016-07-03 18:56:54 -0400 |
commit | 11ea3431265f4b20e18997e5b27187ab4db77e87 (patch) | |
tree | 1621eceec3935d7f31ccd69579f94fb97e573287 /test | |
parent | 65e15f402fab9a496ed74f86d5fbe35ba661ea65 (diff) |
tests: Install missing libraries for things installed in /usr too
Diffstat (limited to 'test')
-rw-r--r-- | test/test-functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-functions b/test/test-functions index 08a5c65555..567a000b8d 100644 --- a/test/test-functions +++ b/test/test-functions @@ -282,7 +282,7 @@ get_ldpath() { install_missing_libraries() { # install possible missing libraries - for i in $initdir/{sbin,bin}/* $initdir/lib/systemd/*; do + for i in $initdir{,/usr}/{sbin,bin}/* $initdir{,/usr}/lib/systemd/*; do LD_LIBRARY_PATH=$(get_ldpath $i) inst_libs $i done } |