From f88aeeb42a4926bc2f7bcb7758ca511e75404593 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Wed, 3 Aug 2022 00:24:29 +0200 Subject: gnulib-tool.py: Fix typo. * pygnulib/GLImport.py (GLImport.__init__): Use the relative auxdir as second, not as first argument of joinpath. --- pygnulib/GLImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pygnulib/GLImport.py') diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py index 2b16ce0ea4..5009917e76 100644 --- a/pygnulib/GLImport.py +++ b/pygnulib/GLImport.py @@ -102,7 +102,7 @@ class GLImport(object): 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: -- cgit v1.2.1