]> Savannah Git Hosting - gnulib.git/commitdiff
gnulib-tool.py: Make output of test Makefile.am match gnulib-tool.
authorCollin Funk <collin.funk1@gmail.com>
Sat, 2 Mar 2024 12:59:04 +0000 (04:59 -0800)
committerBruno Haible <bruno@clisp.org>
Sun, 3 Mar 2024 10:17:21 +0000 (11:17 +0100)
* pygnulib/GLModuleSystem.py
(GLModule.getAutomakeSnippet_Unconditional): Don't sort EXTRA_DIST file
names for test modules.

ChangeLog
pygnulib/GLModuleSystem.py

index c5bfab2ef718495e6e7f67221a09e9709c19323f..1fc442532515c5c09d2d6e69c84a759e497591fc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2024-03-03  Collin Funk  <collin.funk1@gmail.com>
+
+       gnulib-tool.py: Make output of test Makefile.am match gnulib-tool.
+       * pygnulib/GLModuleSystem.py
+       (GLModule.getAutomakeSnippet_Unconditional): Don't sort EXTRA_DIST file
+       names for test modules.
+
 2024-03-03  Bruno Haible  <bruno@clisp.org>
 
        gnulib-tool.py: Fix last commit.
index 3672474fa10a6ae345927b4858b6582b16002dd8..86794cf80e2e22ada83059e7922c01b7ebb341c4 100644 (file)
@@ -571,7 +571,6 @@ class GLModule(object):
                 files = self.getFiles()
                 extra_files = filter_filelist(constants.NL, files,
                                               'tests/', '', 'tests/', '').split(constants.NL)
-                extra_files = sorted(set(extra_files))
                 if extra_files:
                     result += 'EXTRA_DIST += %s' % ' '.join(extra_files)
                     result += constants.NL * 2