* pygnulib/GLImport.py (GLImport.__init__): Use the relative auxdir as
second, not as first argument of joinpath.
+2022-08-03 Bruno Haible <bruno@clisp.org>
+
+ gnulib-tool.py: Fix typo.
+ * pygnulib/GLImport.py (GLImport.__init__): Use the relative auxdir as
+ second, not as first argument of joinpath.
+
2022-07-31 Bruno Haible <bruno@clisp.org>
gnulib-tool.py: Fix typo.
match = pattern.findall(data)
if match:
result = cleaner(match)[0]
- self.cache.setAuxDir(joinpath(result, self.config['destdir']))
+ self.cache.setAuxDir(joinpath(self.config['destdir'], result))
pattern = compiler(r'A[CM]_PROG_LIBTOOL', re.S | re.M)
guessed_libtool = bool(pattern.findall(data))
if self.config['auxdir'] == None: