From b4e60fa87836332e53441d43289e47ec720f987a Mon Sep 17 00:00:00 2001 From: Daniel Llewellyn Date: Fri, 15 May 2020 20:58:18 +0100 Subject: [PATCH] Fix broken build-ld-cache script Fix reference to LD_LIBRARY_PATH missing last H. Signed-off-by: Daniel Llewellyn --- scripts/build-ld-cache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-ld-cache b/scripts/build-ld-cache index 7e67d7e..3629153 100755 --- a/scripts/build-ld-cache +++ b/scripts/build-ld-cache @@ -8,7 +8,7 @@ LD_LIBRARY_PATH="${LD_LIBRARY_PATH//::/:}" # Remove leading empty element if it exists LD_LIBRARY_PATH="${LD_LIBRARY_PATH#:}" # Remove trailing empty element if it exists -LD_LIBRARY_PATH="${LD_LIBRARY_PAT%:}" +LD_LIBRARY_PATH="${LD_LIBRARY_PATH%:}" # run ldconfig on our LD_LIBRARY_PATH lib dirs IFS=':' read -ra PATHS <<< "$LD_LIBRARY_PATH"