summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorSimon Stelling <blubb@gentoo.org>2006-05-01 21:33:34 +0000
committerSimon Stelling <blubb@gentoo.org>2006-05-01 21:33:34 +0000
commitb7fa7c80fbe46360e5f37e01f4f51ed2f2244191 (patch)
tree34567a68dc8bb099ed88d0450d18a456a170c155 /bin
parentmake portage shut up if --quiet is given; bug 62273 (diff)
downloadportage-multirepo-b7fa7c80fbe46360e5f37e01f4f51ed2f2244191.tar.gz
portage-multirepo-b7fa7c80fbe46360e5f37e01f4f51ed2f2244191.tar.bz2
portage-multirepo-b7fa7c80fbe46360e5f37e01f4f51ed2f2244191.zip
replace hardcoded /usr/lib/portage/bin with PORTAGE_BIN_PATH, defaulting to the hardcoded value
svn path=/main/trunk/; revision=3297
Diffstat (limited to 'bin')
-rwxr-xr-xbin/doexe2
-rwxr-xr-xbin/doins2
-rwxr-xr-xbin/doman2
-rwxr-xr-xbin/prepall2
-rwxr-xr-xbin/prepalldocs2
-rwxr-xr-xbin/prepallinfo2
-rwxr-xr-xbin/prepallman2
-rwxr-xr-xbin/prepinfo2
-rwxr-xr-xbin/preplib2
-rwxr-xr-xbin/prepman2
-rwxr-xr-xbin/prepstrip2
11 files changed, 11 insertions, 11 deletions
diff --git a/bin/doexe b/bin/doexe
index 257bfea8..818c8a5b 100755
--- a/bin/doexe
+++ b/bin/doexe
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/doexe,v 1.10.2.1 2004/12/06 03:01:43 carpaski Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
if [[ $# -lt 1 ]] ; then
echo "$0: at least one argument needed" 1>&2
diff --git a/bin/doins b/bin/doins
index aab6e991..f35cbc63 100755
--- a/bin/doins
+++ b/bin/doins
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/doins,v 1.7.2.2 2004/12/17 22:25:13 carpaski Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
if [ $# -lt 1 ] ; then
echo "${0}: at least one argument needed"
diff --git a/bin/doman b/bin/doman
index a04339d5..2ed65ffc 100755
--- a/bin/doman
+++ b/bin/doman
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/doman,v 1.13.2.2 2005/07/29 05:55:34 vapier Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
if [[ $# -lt 1 ]] ; then
echo "$0: at least one argument needed" 1>&2
diff --git a/bin/prepall b/bin/prepall
index 74570e6e..4772574a 100755
--- a/bin/prepall
+++ b/bin/prepall
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: prepall 2230 2005-11-01 01:35:59Z vapier $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
prepallman
prepallinfo
diff --git a/bin/prepalldocs b/bin/prepalldocs
index a2c4e76e..d8b8b747 100755
--- a/bin/prepalldocs
+++ b/bin/prepalldocs
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/prepalldocs,v 1.6 2004/10/04 13:56:50 vapier Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
z="$(find "${D}"usr/share/doc \( -type f -or -type l \) -not -name "*.gz" -not -name "*.js" 2>/dev/null)"
diff --git a/bin/prepallinfo b/bin/prepallinfo
index 268d090d..205316ab 100755
--- a/bin/prepallinfo
+++ b/bin/prepallinfo
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/prepallinfo,v 1.6 2004/10/04 13:56:50 vapier Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
[[ ! -d ${D}usr/share/info ]] && exit 0
diff --git a/bin/prepallman b/bin/prepallman
index 582f4003..85a7277d 100755
--- a/bin/prepallman
+++ b/bin/prepallman
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/prepallman,v 1.10 2004/10/04 13:56:50 vapier Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
ret=0
diff --git a/bin/prepinfo b/bin/prepinfo
index 5863ffd3..dac4b6ac 100755
--- a/bin/prepinfo
+++ b/bin/prepinfo
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/prepinfo,v 1.6.2.1 2005/05/29 12:40:08 jstubbs Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
if [ -z "$1" ] ; then
z="${D}usr/share/info"
diff --git a/bin/preplib b/bin/preplib
index b42fb9ba..ab784d2c 100755
--- a/bin/preplib
+++ b/bin/preplib
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/preplib,v 1.7.2.1 2005/01/02 09:36:02 jstubbs Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
vecho "QA Notice: Please stop using me, fix your package instead" 1>&2
diff --git a/bin/prepman b/bin/prepman
index ba70a4b8..9e5e4198 100755
--- a/bin/prepman
+++ b/bin/prepman
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/prepman,v 1.10.2.3 2005/05/29 12:40:08 jstubbs Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
if [[ -z $1 ]] ; then
z="${D}usr/share/man"
diff --git a/bin/prepstrip b/bin/prepstrip
index 44b6b519..cd28ec11 100755
--- a/bin/prepstrip
+++ b/bin/prepstrip
@@ -3,7 +3,7 @@
# Distributed under the terms of the GNU General Public License v2
# $Id: /var/cvsroot/gentoo-src/portage/bin/prepstrip,v 1.23.2.3 2005/08/15 02:58:20 vapier Exp $
-source /usr/lib/portage/bin/isolated-functions.sh
+source "${PORTAGE_BIN_PATH:-/usr/lib/portage/bin}"/isolated-functions.sh
if [[ " ${FEATURES} " == *" nostrip "* ]] || \
[[ " ${RESTRICT} " == *" nostrip "* ]] || \