diff options
author | Andreas Färber | 2011-05-08 13:25:56 +0200 |
---|---|---|
committer | Alexander Graf | 2011-05-09 22:31:38 +0200 |
commit | 446b91652ce4eb19401d102e390899cfb1fb1c62 (patch) | |
tree | bac3a6b5714f71305b4d427d345c24404b205776 /configure | |
parent | kvm: ppc: warn user on PAGE_SIZE mismatch (diff) | |
download | qemu-446b91652ce4eb19401d102e390899cfb1fb1c62.tar.gz qemu-446b91652ce4eb19401d102e390899cfb1fb1c62.tar.xz qemu-446b91652ce4eb19401d102e390899cfb1fb1c62.zip |
ppc64: Fix out-of-tree builds
On ppc64 host, recursion into pc-bios/spapr-rtas/ fails for
out-of-tree builds. Add missing dir and symlink.
Cc: David Gibson <david@gibson.dropbear.id.au>
Cc: Alexander Graf <agraf@suse.de>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3475,11 +3475,13 @@ done # for target in $targets # build tree in object directory in case the source is not in the current directory DIRS="tests tests/cris slirp audio block net pc-bios/optionrom" +DIRS="$DIRS pc-bios/spapr-rtas" DIRS="$DIRS roms/seabios roms/vgabios" DIRS="$DIRS fsdev ui" FILES="Makefile tests/Makefile" FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" +FILES="$FILES pc-bios/spapr-rtas/Makefile" FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.rom $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do FILES="$FILES pc-bios/`basename $bios_file`" |