mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 12:52:30 +00:00
kbuild: deb-pkg: do not search for 'scripts' directory under arch/
The 'scripts' directory was searched under arch/${SRCARCH} to copy
arch/ia64/scripts, but commit cf8e865810
("arch: Remove Itanium
(IA-64) architecture") removed arch/ia64/ entirely.
There is another 'scripts' directory in arch/um/, but this script
is never executed with SRCARCH=um because UML does not support the
linux-headers package.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
This commit is contained in:
parent
16c36f8864
commit
358c3f8cce
@ -20,7 +20,7 @@ mkdir -p "${destdir}"
|
||||
find "arch/${SRCARCH}" -maxdepth 1 -name 'Makefile*'
|
||||
find include scripts -type f -o -type l
|
||||
find "arch/${SRCARCH}" -name Kbuild.platforms -o -name Platform
|
||||
find "arch/${SRCARCH}" -name include -o -name scripts -type d
|
||||
find "arch/${SRCARCH}" -name include -type d
|
||||
) | tar -c -f - -C "${srctree}" -T - | tar -xf - -C "${destdir}"
|
||||
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user