Skip to content

Commit 31bc5ab

Browse files
authored
Merge pull request #62 from jmtd/lib-path-checking
library search: Swap precedence of /usr{/local,}/lib
2 parents 5413bfc + f645c56 commit 31bc5ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-issue.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ IFS=:
3636
# Set library path
3737
# shellcheck disable=SC2086
3838
# Rationale: Word splitting not an issue
39-
LIB_PATH="$(dirname $0)/../lib:$LD_LIBRARY_PATH:/usr/lib:/usr/local/lib"
39+
LIB_PATH="$(dirname $0)/../lib:$LD_LIBRARY_PATH:/usr/local/lib:/usr/lib"
4040
if [ "x$GIT_ISSUE_LIB_PATH" != x ] ; then
4141
LIB_PATH="$GIT_ISSUE_LIB_PATH"
4242
fi

0 commit comments

Comments
 (0)