diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-11 10:36:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-11 10:36:17 +0000 |
commit | 9015346b18958f160b409ae6b561ad36ff83565e (patch) | |
tree | 68549db8cac581bed4b2eb25743fc8934e8f9c39 /bin | |
parent | dont reset spinner for non-ttys if --quiet is in use (diff) | |
download | portage-idfetch-9015346b18958f160b409ae6b561ad36ff83565e.tar.gz portage-idfetch-9015346b18958f160b409ae6b561ad36ff83565e.tar.bz2 portage-idfetch-9015346b18958f160b409ae6b561ad36ff83565e.zip |
backport portage-pkg path change from savior branch
svn path=/main/trunk/; revision=2850
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/quickpkg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/quickpkg b/bin/quickpkg index 8f57f5d0..abb3d294 100755 --- a/bin/quickpkg +++ b/bin/quickpkg @@ -46,11 +46,11 @@ source /sbin/functions.sh # $1 = package-name w/version # $2 = category do_pkg() { - mkdir -p "${PORTAGE_TMPDIR}/portage-pkg" || exit 1 - chmod 0750 "${PORTAGE_TMPDIR}/portage-pkg" - MYDIR="${PORTAGE_TMPDIR}/portage-pkg/$1" + mkdir -p "${PORTAGE_TMPDIR}/binpkgs" || exit 1 + chmod 0750 "${PORTAGE_TMPDIR}/binpkgs" + MYDIR="${PORTAGE_TMPDIR}/binpkgs/$1" SRCDIR="${PORTAGE_DB}/$2/$1" - LOG="${PORTAGE_TMPDIR}/portage-pkg/$1-quickpkglog" + LOG="${PORTAGE_TMPDIR}/binpkgs/$1-quickpkglog" ebegin "Building package for $1" ( |