Esempio n. 1
0
 def __init__ (self, settings, source):
     target.AutoBuild.__init__ (self, settings, source)
     # Freetype stats /sbin, /usr/sbin and /hurd to determine if
     # build system is unix??
     # build.append_dict (self, {'LIBRESTRICT_ALLOW': '/sbin:/usr/sbin:/hurd'})
     if 'stat' in misc.librestrict ():
         build.add_dict (self, {'LIBRESTRICT_ALLOW': '/sbin:/usr/sbin:/hurd:${LIBRESTRICT_ALLOW-/foo}'})
Esempio n. 2
0
 def __init__(self, settings, source):
     target.AutoBuild.__init__(self, settings, source)
     build.add_dict(
         self, {
             'ACLOCAL_FLAGS': ' -I '.join([''] + self.aclocal_path()),
         })
     source.is_tracking = misc.bind_method(lambda x: True, source)
Esempio n. 3
0
 def __init__(self, settings, source):
     target.AutoBuild.__init__(self, settings, source)
     if 'stat' in misc.librestrict():
         build.add_dict(
             self, {
                 'LIBRESTRICT_IGNORE':
                 '%(tools_prefix)s/bin/bash:%(tools_prefix)s/bin/make'
             })
Esempio n. 4
0
File: gmp.py Progetto: jrioux/gub
 def __init__(self, settings, source):
     target.AutoBuild.__init__(self, settings, source)
     if not self.settings.platform.startswith('darwin'):
         self.target_architecture = re.sub('i[0-9]86-', 'i386-',
                                           settings.target_architecture)
     if 'stat' in misc.librestrict():
         build.add_dict(self,
                        {'LIBRESTRICT_IGNORE': '%(tools_prefix)s/bin/bash'})
Esempio n. 5
0
 def __init__ (self, settings, source):
     target.AutoBuild.__init__ (self, settings, source)
     build.add_dict (self,
                     {'ACLOCAL_FLAGS': ' -I '.join ([''] + self.aclocal_path ()), })
     source.is_tracking = misc.bind_method (lambda x: True, source)
Esempio n. 6
0
File: gmp.py Progetto: gperciva/gub
 def __init__ (self, settings, source):
     target.AutoBuild.__init__ (self, settings, source)
     if not self.settings.platform.startswith ('darwin'):
         self.target_architecture = re.sub ('i[0-9]86-', 'i386-', settings.target_architecture)
     if 'stat' in misc.librestrict ():
         build.add_dict (self, {'LIBRESTRICT_IGNORE': '%(tools_prefix)s/bin/bash'})
Esempio n. 7
0
 def __init__ (self, settings, source):
     target.AutoBuild.__init__ (self, settings, source)
     if 'stat' in misc.librestrict ():
         build.add_dict (self, {'LIBRESTRICT_IGNORE': '%(tools_prefix)s/bin/bash:%(tools_prefix)s/bin/make'})