From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39329) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wka92-0004Hs-Oh for qemu-devel@nongnu.org; Wed, 14 May 2014 10:26:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wka90-0005BQ-VL for qemu-devel@nongnu.org; Wed, 14 May 2014 10:26:56 -0400 Received: from mnementh.archaic.org.uk ([2001:8b0:1d0::1]:48148) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wka90-0005BK-Oz for qemu-devel@nongnu.org; Wed, 14 May 2014 10:26:54 -0400 From: Peter Maydell Date: Wed, 14 May 2014 15:26:52 +0100 Message-Id: <1400077612-28488-1-git-send-email-peter.maydell@linaro.org> Subject: [Qemu-devel] [PATCH] configure: Ensure tests/qemu-iotests exists before writing common.env List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Kevin Wolf , Markus Armbruster , Stefan Hajnoczi , Max Reitz Before we write common.env to the tests/qemu-iotests directory, ensure that it exists. This fixes out-of-tree builds from clean. Signed-off-by: Peter Maydell --- If somebody would like to review this I'll apply it to master as a buildfix... configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 6adfa72..c4e43ed 100755 --- a/configure +++ b/configure @@ -4770,6 +4770,7 @@ fi iotests_common_env="tests/qemu-iotests/common.env" +mkdir -p "$(dirname "$iotests_common_env")" echo "# Automatically generated by configure - do not modify" > $iotests_common_env echo >> $iotests_common_env echo "PYTHON='$python'" >> $iotests_common_env -- 1.9.2