diff options
author | Matthias Maennich <maennich@google.com> | 2019-06-25 15:34:36 +0100 |
---|---|---|
committer | Matthias Maennich <maennich@google.com> | 2019-06-25 15:34:36 +0100 |
commit | bc48ccb922ce61ad4eb29b7ee95c616bf632e42a (patch) | |
tree | 8b9ade6fdb484732527a8ce2b0257c8cd344cb0c | |
parent | 2898702ddf656e46e7248c969402eaeca2e6b913 (diff) |
abi/bootstrap: ensure libebl backends are in LD_LIBRARY_PATH
bootstrap incorrectly missed to add the path to the libebl backends
(e.g. libebl_aarch64.so) to the printed LD_LIBRARY_PATH.
Fix that.
Bug: 135957120
Change-Id: I5ee2127bee5885101432f41533c4b7cd233c916e
Signed-off-by: Matthias Maennich <maennich@google.com>
-rwxr-xr-x | abi/bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/abi/bootstrap b/abi/bootstrap index 38af7f4..3e85a09 100755 --- a/abi/bootstrap +++ b/abi/bootstrap @@ -90,6 +90,6 @@ echo echo "Note: Export following environment before running the executables:" echo echo "export PATH=\"${OUT_DIR}/bin:\${PATH}\"" -echo "export LD_LIBRARY_PATH=\"${OUT_DIR}/lib:\${LD_LIBRARY_PATH}\"" +echo "export LD_LIBRARY_PATH=\"${OUT_DIR}/lib:${OUT_DIR}/lib/elfutils:\${LD_LIBRARY_PATH}\"" echo echo |