Files
MSYS2-packages/subversion/01-make-build-directories.patch
2013-11-07 23:02:43 +04:00

26 lines
704 B
Diff

Create directories in build tree.
From: David Rothenberger <d.rothenberger@entomo.com>
---
configure.ac | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
index e3dd4ac..5f9f3fa 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1497,6 +1497,11 @@ AC_DEFINE_UNQUOTED([SVN_BUILD_TARGET], "${target}",
[Defined to the config.guess name of the build target])
AC_OUTPUT
+if test "$abs_srcdir" != "$abs_builddir"
+then
+ AC_MSG_NOTICE([Creating build directories])
+ (cd "$abs_srcdir"; find subversion tools contrib -type d) | xargs $MKDIR
+fi
# ==== Print final messages to user ==========================================