diff options
author | Ned Ludd <solar@gentoo.org> | 2004-08-04 05:47:43 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2004-08-04 05:47:43 +0000 |
commit | 13d97608fb021ec448dea2228b5eec49f1863fae (patch) | |
tree | 2b664137309ffdcb8102ed0a2767f16d7f8f2c8e | |
parent | fixed typo for virtual/module-init-tools (diff) | |
download | historical-13d97608fb021ec448dea2228b5eec49f1863fae.tar.gz historical-13d97608fb021ec448dea2228b5eec49f1863fae.tar.bz2 historical-13d97608fb021ec448dea2228b5eec49f1863fae.zip |
set PKGDIR=PORTDIR/packages/CHOST for all uclibc profiles
-rw-r--r-- | profiles/uclibc/arm/make.defaults | 2 | ||||
-rw-r--r-- | profiles/uclibc/hardened/x86/make.defaults | 2 | ||||
-rw-r--r-- | profiles/uclibc/mips/make.defaults | 2 | ||||
-rw-r--r-- | profiles/uclibc/x86/make.defaults | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/profiles/uclibc/arm/make.defaults b/profiles/uclibc/arm/make.defaults index f1763a1a8ae5..208e219a2570 100644 --- a/profiles/uclibc/arm/make.defaults +++ b/profiles/uclibc/arm/make.defaults @@ -39,3 +39,5 @@ ACCEPT_KEYWORDS="arm" FEATURES="sandbox sfperms strict nodoc noinfo noman" #FEATURES="${FEATURES} userpriv usersandbox" +PORTDIR=/usr/portage/ +PKGDIR=${PORTDIR}/packages/${CHOST}/ diff --git a/profiles/uclibc/hardened/x86/make.defaults b/profiles/uclibc/hardened/x86/make.defaults index 112571f3b0c8..69d1edb8c93c 100644 --- a/profiles/uclibc/hardened/x86/make.defaults +++ b/profiles/uclibc/hardened/x86/make.defaults @@ -38,3 +38,5 @@ ACCEPT_KEYWORDS="x86" FEATURES="sandbox sfperms strict nodoc noinfo noman" #FEATURES="${FEATURES} userpriv usersandbox" +PORTDIR=/usr/portage/ +PKGDIR=${PORTDIR}/packages/${CHOST}/ diff --git a/profiles/uclibc/mips/make.defaults b/profiles/uclibc/mips/make.defaults index c343d4f4ba2f..58b5be9362c0 100644 --- a/profiles/uclibc/mips/make.defaults +++ b/profiles/uclibc/mips/make.defaults @@ -39,3 +39,5 @@ ACCEPT_KEYWORDS="mips" FEATURES="sandbox sfperms strict nodoc noinfo noman" #FEATURES="${FEATURES} userpriv usersandbox" +PORTDIR=/usr/portage/ +PKGDIR=${PORTDIR}/packages/${CHOST}/ diff --git a/profiles/uclibc/x86/make.defaults b/profiles/uclibc/x86/make.defaults index d31a486bcb1e..15e925d49885 100644 --- a/profiles/uclibc/x86/make.defaults +++ b/profiles/uclibc/x86/make.defaults @@ -39,3 +39,5 @@ ACCEPT_KEYWORDS="x86" FEATURES="sandbox sfperms strict nodoc noinfo noman" #FEATURES="${FEATURES} userpriv usersandbox" +PORTDIR=/usr/portage/ +PKGDIR=${PORTDIR}/packages/${CHOST}/ |