From 2ce20e52fe5591e06a5fd30a7a2f1b679caa74f0 Mon Sep 17 00:00:00 2001 From: SimpliFly03 <48456521+SimpliFly03@users.noreply.github.com> Date: Fri, 8 Jan 2021 16:25:26 +0300 Subject: [PATCH] add cpio as make depend (#144) * add cpio as make depend I got an error "make[1]: *** [kernel/Makefile:146: kernel/kheaders_data.tar.xz] Error 127" when compiling 5.10.4. According to https://bbs.archlinux.org/viewtopic.php?id=261876 "cpio" package is needed. Installing that fixed the problem. * added other new makedepends --- PKGBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PKGBUILD b/PKGBUILD index 1320f4e..f17c58b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -53,7 +53,7 @@ pkgdesc='Linux-tkg' arch=('x86_64') # no i686 in here url="http://www.kernel.org/" license=('GPL2') -makedepends=('bison' 'xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'libelf' 'pahole' 'patchutils' 'flex' 'python-sphinx' 'python-sphinx_rtd_theme' 'graphviz' 'imagemagick' 'git') +makedepends=('bison' 'xmlto' 'docbook-xsl' 'kmod' 'inetutils' 'bc' 'libelf' 'pahole' 'patchutils' 'flex' 'python-sphinx' 'python-sphinx_rtd_theme' 'graphviz' 'imagemagick' 'git' 'cpio' 'perl' 'tar' 'xz') if [ "$_compiler_name" = "-llvm" ]; then makedepends+=( 'lld' 'clang' 'llvm') fi