From 2e61af71523d43317e8aff530f27457d94e3f40c Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 24 Sep 2010 19:18:58 +0000 Subject: [PATCH] Check inplace doesn't exist before we try to create it This fixes rerunning configure in a tree which already has an inplace directory. Edward Z Yang ran into this; I guess whether it actually fails depends on details of your installation, or we'd have run into it sooner. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index db268ab..600317d 100644 --- a/configure.ac +++ b/configure.ac @@ -438,7 +438,7 @@ then then AC_MSG_NOTICE([Making in-tree mingw tree]) rm -rf inplace/mingw - mkdir inplace + test -d inplace || mkdir inplace mkdir inplace/mingw ( cd inplace/mingw && -- 1.7.10.4