From: Luiz Capitulino Date: Fri, 26 Aug 2011 18:00:13 +0000 (-0300) Subject: configure: Copy test data to build directory X-Git-Tag: v0.15.1~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fbdd7c8bd53aa8228b6faca00d29ce60a42ae8b2;p=thirdparty%2Fqemu.git configure: Copy test data to build directory The QDict unit-tests (check-qdict) will fail when ran on a different build directory. That's, it only works when ran on the source dir. This happens because its data file (qdict-test-data.txt) is not copied to the build dir. Fix it. Signed-off-by: Luiz Capitulino Conflicts: configure --- diff --git a/configure b/configure index 3d39d1b198d..c55be366c32 100755 --- a/configure +++ b/configure @@ -3566,7 +3566,7 @@ DIRS="$DIRS roms/seabios roms/vgabios" DIRS="$DIRS fsdev ui" DIRS="$DIRS qapi" DIRS="$DIRS qga" -FILES="Makefile tests/Makefile" +FILES="Makefile tests/Makefile qdict-test-data.txt" FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" FILES="$FILES pc-bios/spapr-rtas/Makefile"