commit: 579e25454b12e266fffc10f48e62be4155522e0b Author: Andrew Savchenko <bircoph <AT> gentoo <DOT> org> AuthorDate: Thu Jan 1 15:32:16 2015 +0000 Commit: Andrew Savchenko <bircoph <AT> gmail <DOT> com> CommitDate: Thu Jan 1 15:32:16 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=579e2545
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. --- scripts/merge-dualHEAD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/merge-dualHEAD b/scripts/merge-dualHEAD index 961b461..43b7610 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