Exemplo 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}'})
Exemplo 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)
Exemplo 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'
             })
Exemplo n.º 4
0
Arquivo: gmp.py Projeto: 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'})
Exemplo 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)
Exemplo n.º 6
0
Arquivo: gmp.py Projeto: 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'})
Exemplo 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'})