[jhbuild] fix getting make arguments in clean phase



commit 2c5a26fb3d632e3542e6cbb8a725af835953ac05
Author: Frederic Peters <fpeters 0d be>
Date:   Sun May 3 22:57:20 2009 +0200

    fix getting make arguments in clean phase
---
 jhbuild/modtypes/autotools.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/jhbuild/modtypes/autotools.py b/jhbuild/modtypes/autotools.py
index aaeddc2..e6efd5b 100644
--- a/jhbuild/modtypes/autotools.py
+++ b/jhbuild/modtypes/autotools.py
@@ -213,7 +213,7 @@ class AutogenModule(Package):
 
     def do_clean(self, buildscript):
         buildscript.set_action(_('Cleaning'), self)
-        makeargs = self.makeargs + ' ' + self.config.module_makeargs(
+        makeargs = self.makeargs + ' ' + self.config.module_makeargs.get(
                 self.name, self.config.makeargs)
         cmd = '%s %s clean' % (os.environ.get('MAKE', 'make'), makeargs)
         buildscript.execute(cmd, cwd = self.get_builddir(buildscript),



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]