]> git.proxmox.com Git - pve-kernel.git/commitdiff
d/rules: reformat header collection
authorFabian Grünbichler <f.gruenbichler@proxmox.com>
Tue, 24 Apr 2018 11:57:27 +0000 (13:57 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 25 Apr 2018 05:20:24 +0000 (07:20 +0200)
for better readability and to reduce future churn

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
debian/rules

index 6596254d6811c220145af6c615d9b4ce831a1e0c..e7cedbfd05738774d0da83b53f4b962503ba798b 100755 (executable)
@@ -140,15 +140,26 @@ binary: install
        mkdir -p debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
        install -m 0644 ${KERNEL_SRC}/.config debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
        install -m 0644 ${KERNEL_SRC}/Module.symvers debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
-       cd ${KERNEL_SRC}; find . -path './debian/*' -prune -o -path './include/*' -prune -o -path './Documentation' -prune \
-         -o -path './scripts' -prune -o -type f \
-         \( -name 'Makefile*' -o -name 'Kconfig*' -o -name 'Kbuild*' -o \
-            -name '*.sh' -o -name '*.pl' \) \
-         -print | cpio -pd --preserve-modification-time ${BUILD_DIR}/debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
+       cd ${KERNEL_SRC}; find . -path './debian/*' -prune \
+           -o -path './include/*' -prune \
+           -o -path './Documentation' -prune \
+           -o -path './scripts' -prune \
+           -o -type f \
+           \( \
+               -name 'Makefile*' \
+               -o -name 'Kconfig*' \
+               -o -name 'Kbuild*' \
+               -o -name '*.sh' \
+               -o -name '*.pl' \
+           \) \
+           -print | cpio -pd --preserve-modification-time ${BUILD_DIR}/debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
        cd ${KERNEL_SRC}; cp -a include scripts ${BUILD_DIR}/debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
-       cd ${KERNEL_SRC}; (find arch/${KERNEL_HEADER_ARCH} -name include -type d -print | \
-               xargs -n1 -i: find : -type f) | \
-               cpio -pd --preserve-modification-time ${BUILD_DIR}/debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
+       cd ${KERNEL_SRC}; \
+           ( \
+               find arch/${KERNEL_HEADER_ARCH} -name include -type d -print | \
+               xargs -n1 -i: find : -type f \
+           ) | \
+           cpio -pd --preserve-modification-time ${BUILD_DIR}/debian/${PVE_HEADER_PKG}/usr/src/linux-headers-${KVNAME}
        mkdir -p debian/${PVE_HEADER_PKG}/lib/modules/${KVNAME}
        ln -sf /usr/src/linux-headers-${KVNAME} debian/${PVE_HEADER_PKG}/lib/modules/${KVNAME}/build
        touch $@