Skip to content

Commit f645c56

Browse files
committed
library search: Swap precedence of /usr{/local,}/lib
It is customary for /usr/local to contain software installed by the local system administrator/owner and for that to override the same software if provided at a system-wide level (e.g. in /usr/lib) This addresses one of the issues touched on in #61 but does not fix the key issue (IMHO) which is that `make install PREFIX=$HOME` does not result in a working `git issue` so not marking it as fixed in these commits.
1 parent 5d111e1 commit f645c56

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)