From 884d3ba9dd8f5e91cdbba267d57622723f358658 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 2 Nov 2000 17:52:56 +0000 Subject: [PATCH] Make sure the Modules/ directory is created before writing Modules/Setup. --- configure.in | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.in b/configure.in index 43462fb8a53..15e9a3a1159 100644 --- a/configure.in +++ b/configure.in @@ -1300,6 +1300,9 @@ AC_CHECK_TYPE(socklen_t, int) AC_MSG_CHECKING(for Modules/Setup) if test ! -f Modules/Setup ; then + if test ! -d Modules ; then + mkdir Modules + fi cp "$srcdir/Modules/Setup.dist" Modules/Setup AC_MSG_RESULT(creating) else