]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Fix typo.
authorBruno Haible <bruno@clisp.org>
Sun, 31 Jul 2022 21:28:18 +0000 (23:28 +0200)
committerBruno Haible <bruno@clisp.org>
Sun, 31 Jul 2022 21:53:01 +0000 (23:53 +0200)
* pygnulib/GLTestDir.py (GLMegaTestDir.execute): Invoke os.mkdir as
intended.

ChangeLog
pygnulib/GLTestDir.py

index cc3c89fd1478a0fd3c89c42c343a267e88d481be..59f595310b9fb5118e8c7428a991c17b68689900 100644 (file)
--- 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.
index 7a7f5c52fb4d2ae44271656a8f6601823ec54db6..36aa5d21171605273a303958afd101e08cd8f694 100644 (file)
@@ -961,7 +961,7 @@ class GLMegaTestDir(object):
         constants.execute(args, verbose)
         try:  # Try to make a directory
             if not isdir('build-aux'):
-                osmkdir('build-aux')
+                os.mkdir('build-aux')
         except Exception as error:
             pass
         args = [UTILS['autoconf']]