diff options
author | 2015-01-01 18:32:16 +0300 | |
---|---|---|
committer | 2015-01-01 18:32:16 +0300 | |
commit | 579e25454b12e266fffc10f48e62be4155522e0b (patch) | |
tree | 9f90c911f0cdf42e5d77877aecae976baf6913e7 /scripts | |
parent | Merge remote-tracking branch 'github/master' (diff) | |
download | sci-579e25454b12e266fffc10f48e62be4155522e0b.tar.gz sci-579e25454b12e266fffc10f48e62be4155522e0b.tar.bz2 sci-579e25454b12e266fffc10f48e62be4155522e0b.zip |
Use /usr/lib instead of /usr/lib64
Not all people commit from 64-bit hosts, so lib64 brokes script for
them. /usr/lib should be safe, as it should symlink to current main
API on the system.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/merge-dualHEAD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/merge-dualHEAD b/scripts/merge-dualHEAD index 961b46153..43b7610ef 100755 --- a/scripts/merge-dualHEAD +++ b/scripts/merge-dualHEAD @@ -1,7 +1,7 @@ #!/bin/bash # This script is licensed under BSD-3 -export PORTAGE_BIN_PATH="/usr/lib64/portage/python2.7" +export PORTAGE_BIN_PATH="/usr/lib/portage/python2.7" if [[ -f "${PORTAGE_BIN_PATH}"/isolated-functions.sh ]]; then . "${PORTAGE_BIN_PATH}"/isolated-functions.sh |