From f9b39c4e337f1dc0dd07c4f3985c476fb875d799 Mon Sep 17 00:00:00 2001
From: Bruno Haible <bruno@clisp.org>
Date: Sun, 31 Jul 2022 23:28:18 +0200
Subject: [PATCH] gnulib-tool.py: Fix typo.

* pygnulib/GLTestDir.py (GLMegaTestDir.execute): Invoke os.mkdir as
intended.
---
 ChangeLog             | 4 ++++
 pygnulib/GLTestDir.py | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index cc3c89fd14..59f595310b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2022-07-31  Bruno Haible  <bruno@clisp.org>
 
+	gnulib-tool.py: Fix typo.
+	* pygnulib/GLTestDir.py (GLMegaTestDir.execute): Invoke os.mkdir as
+	intended.
+
 	gnulib-tool.py: Improve some error messages.
 	* gnulib-tool.py (main): Write "*** Stop." instead of "*** Exit.".
 	(__main__): Print an error message for GLError 5, 13, 14, 15, 16, 17, 18.
diff --git a/pygnulib/GLTestDir.py b/pygnulib/GLTestDir.py
index 7a7f5c52fb..36aa5d2117 100644
--- a/pygnulib/GLTestDir.py
+++ b/pygnulib/GLTestDir.py
@@ -961,7 +961,7 @@ class GLMegaTestDir(object):
         constants.execute(args, verbose)
         try:  # Try to make a directory
             if not isdir('build-aux'):
-                os, mkdir('build-aux')
+                os.mkdir('build-aux')
         except Exception as error:
             pass
         args = [UTILS['autoconf']]
-- 
2.39.5