Commit e5079ea3 authored by Kai Lautaportti's avatar Kai Lautaportti

Removed the is_build_dir() method

parent 3b714f19
...@@ -76,11 +76,6 @@ class Recipe(object): ...@@ -76,11 +76,6 @@ class Recipe(object):
log.error('Error executing command: %s' % cmd) log.error('Error executing command: %s' % cmd)
raise zc.buildout.UserError('System error') raise zc.buildout.UserError('System error')
def is_build_dir(self):
"""Returns True if the current directory contains files that we
consider buildable, False otherwise."""
return os.path.isfile('configure') or os.path.isfile('Makefile.PL')
def install(self): def install(self):
log = logging.getLogger(self.name) log = logging.getLogger(self.name)
parts = [] parts = []
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment