]> git.itanic.dy.fi Git - linux-stable/commitdiff
kbuild: fix kernel-devel RPM package and linux-headers Deb package
authorMasahiro Yamada <masahiroy@kernel.org>
Sun, 10 Sep 2023 12:44:13 +0000 (21:44 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Thu, 14 Sep 2023 17:39:24 +0000 (02:39 +0900)
Since commit fe66b5d2ae72 ("kbuild: refactor kernel-devel RPM package
and linux-headers Deb package"), the kernel-devel RPM package and
linux-headers Deb package are broken.

I double-quoted the $(find ... -type d), which resulted in newlines
being included in the argument to the outer find comment.

  find: 'arch/arm64/include\narch/arm64/kvm/hyp/include': No such file or directory

The outer find command is unneeded.

Fixes: fe66b5d2ae72 ("kbuild: refactor kernel-devel RPM package and linux-headers Deb package")
Reported-by: Karolis M <k4rolis@protonmail.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <n.schier@avm.de>
scripts/package/install-extmod-build

index af7fe9f5b1e4d3d79569d47f392a12cbea65accd..8a7051fad0878990cd4569a326fc7137a7db088d 100755 (executable)
@@ -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 "$(find "arch/${SRCARCH}" -name include -o -name scripts -type d)" -type f
+       find "arch/${SRCARCH}" -name include -o -name scripts -type d
 ) | tar -c -f - -C "${srctree}" -T - | tar -xf - -C "${destdir}"
 
 {