jhbuild r2697 - in trunk: . jhbuild/modtypes



Author: johncarr
Date: Wed Feb  4 11:40:22 2009
New Revision: 2697
URL: http://svn.gnome.org/viewvc/jhbuild?rev=2697&view=rev

Log:
Forward tarball makeinstallargs on to autotools code

Modified:
   trunk/ChangeLog
   trunk/jhbuild/modtypes/tarball.py

Modified: trunk/jhbuild/modtypes/tarball.py
==============================================================================
--- trunk/jhbuild/modtypes/tarball.py	(original)
+++ trunk/jhbuild/modtypes/tarball.py	Wed Feb  4 11:40:22 2009
@@ -31,6 +31,7 @@
     checkoutdir = None
     autogenargs = ''
     makeargs = ''
+    makeinstallargs = ''
     supports_non_srcdir_builds = True
     makefile = 'Makefile'
     if node.hasAttribute('checkoutdir'):
@@ -39,6 +40,8 @@
         autogenargs = node.getAttribute('autogenargs')
     if node.hasAttribute('makeargs'):
         makeargs = node.getAttribute('makeargs')
+    if node.hasAttribute('makeinstallargs'):
+        makeinstallargs = node.getAttribute('makeinstallargs')
     if node.hasAttribute('supports-non-srcdir-builds'):
         supports_non_srcdir_builds = \
             (node.getAttribute('supports-non-srcdir-builds') != 'no')
@@ -86,7 +89,7 @@
     branch.patches = patches
 
     return AutogenModule(name, branch,
-            autogenargs, makeargs, '',
+            autogenargs, makeargs, makeinstallargs,
             dependencies, after, suggests,
             supports_non_srcdir_builds = supports_non_srcdir_builds,
             skip_autogen = False, autogen_sh = 'configure',



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