]> Git Repo - qemu.git/commitdiff
fix scripts/update-linux-headers.sh here document
authorGerd Hoffmann <[email protected]>
Fri, 10 Nov 2017 09:03:54 +0000 (10:03 +0100)
committerPaolo Bonzini <[email protected]>
Wed, 15 Nov 2017 15:27:01 +0000 (16:27 +0100)
The minus sign after << causes the shell to strip only
preceding tabs, not spaces.

Signed-off-by: Gerd Hoffmann <[email protected]>
Message-Id: <20171110090354[email protected]>
Fixes: 40bf8e9aede0f9105a9e1e4aaf17b20aaa55f9a0
Reviewed-by: Roman Kagan <[email protected]>
Reviewed-by: Stefan Hajnoczi <[email protected]>
Tested-by: Christian Borntraeger <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
scripts/update-linux-headers.sh

index ad80fe3fca9a5a977b8797bcc72eecc7e62f2e26..76fd894a77a30dff9252ef20335adcddb800f2af 100755 (executable)
@@ -106,7 +106,7 @@ for arch in $ARCHLIST; do
     if [ $arch = x86 ]; then
         cat <<-EOF >"$output/include/standard-headers/asm-x86/hyperv.h"
         /* this is a temporary placeholder until kvm_para.h stops including it */
-        EOF
+EOF
         cp "$tmpdir/include/asm/unistd_32.h" "$output/linux-headers/asm-x86/"
         cp "$tmpdir/include/asm/unistd_x32.h" "$output/linux-headers/asm-x86/"
         cp "$tmpdir/include/asm/unistd_64.h" "$output/linux-headers/asm-x86/"
This page took 0.024062 seconds and 4 git commands to generate.