commit: 71e548298c6f9a42c8f99f43864a738d3c5f4a00
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 23 02:46:33 2016 +0000
Commit: Mike Frysinger <vapier <AT> gentoo <DOT> org>
CommitDate: Sun Mar 27 04:55:06 2016 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=71e54829
kmerge: do not use --nodeps with kernel install
The kernel might pull in some tools needed to build it (like bc), so don't
merge it with --nodeps. Seems like its inclusion in fed3b45bb608d2022fbc2
was an oversight.
targets/support/kmerge.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/targets/support/kmerge.sh b/targets/support/kmerge.sh
index 3d4afea..fc066cc 100755
--- a/targets/support/kmerge.sh
+++ b/targets/support/kmerge.sh
@@ -220,7 +220,7 @@ then
[ -L /usr/src/linux ] && rm -f /usr/src/linux
- PKGDIR=${PKGDIR} clst_myemergeopts="--quiet --nodeps --update --newuse"
run_merge "${clst_ksource}" || exit 1
+ PKGDIR=${PKGDIR} clst_myemergeopts="--quiet --update --newuse"
run_merge "${clst_ksource}" || exit 1
SOURCESDIR="/tmp/kerncache/${clst_kname}/sources"
if [ -L /usr/src/linux ]