Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 884d3ba

Browse files
committed
Make sure the Modules/ directory is created before writing Modules/Setup.
1 parent e7d3616 commit 884d3ba

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

configure.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1300,6 +1300,9 @@ AC_CHECK_TYPE(socklen_t, int)
13001300

13011301
AC_MSG_CHECKING(for Modules/Setup)
13021302
if test ! -f Modules/Setup ; then
1303+
if test ! -d Modules ; then
1304+
mkdir Modules
1305+
fi
13031306
cp "$srcdir/Modules/Setup.dist" Modules/Setup
13041307
AC_MSG_RESULT(creating)
13051308
else

0 commit comments

Comments
 (0)