Skip to content

Commit 358c3f8

Browse files
committed
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 cf8e865 ("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>
1 parent 16c36f8 commit 358c3f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/package/install-extmod-build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mkdir -p "${destdir}"
2020
find "arch/${SRCARCH}" -maxdepth 1 -name 'Makefile*'
2121
find include scripts -type f -o -type l
2222
find "arch/${SRCARCH}" -name Kbuild.platforms -o -name Platform
23-
find "arch/${SRCARCH}" -name include -o -name scripts -type d
23+
find "arch/${SRCARCH}" -name include -type d
2424
) | tar -c -f - -C "${srctree}" -T - | tar -xf - -C "${destdir}"
2525

2626
{

0 commit comments

Comments
 (0)