diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-09-08 21:47:11 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-09-09 05:31:57 +0100 |
commit | 5ff32d9c306ecdfdcc2b2f828a4f7938676bd564 (patch) | |
tree | 2531cf21a61bf342abb282655b4647b7266e5242 | |
parent | wrappers/Makefile: fix weird double spaces (diff) | |
download | crossdev-20220909.tar.gz crossdev-20220909.tar.bz2 crossdev-20220909.zip |
wrappers: Actually set PKGDIR to /var/cache/binpkgs20220909
Probably a typo, so accidentally got changed to `cache/binpkgs` instead of
`/var/cache/binpkgs`
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Closes: https://github.com/gentoo/crossdev/pull/5
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r-- | wrappers/etc/portage/make.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wrappers/etc/portage/make.conf b/wrappers/etc/portage/make.conf index 0571e8b..59bf61e 100644 --- a/wrappers/etc/portage/make.conf +++ b/wrappers/etc/portage/make.conf @@ -16,7 +16,7 @@ CXXFLAGS="${CFLAGS}" FEATURES="-collision-protect sandbox buildpkg noman noinfo nodoc" # Be sure we dont overwrite pkgs from another repo.. -PKGDIR=${ROOT}cache/binpkgs/ +PKGDIR=${ROOT}var/cache/binpkgs/ PORTAGE_TMPDIR=${ROOT}tmp/ PKG_CONFIG_PATH="${ROOT}usr/lib/pkgconfig/" |