Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/build.py')
-rw-r--r--devbot/build.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/devbot/build.py b/devbot/build.py
index 7c4f570..5abe724 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -101,9 +101,6 @@ def _pull_module(module):
except subprocess.CalledProcessError:
sys.exit(1)
-def _build_make(module, log):
- command.run(["make"], log)
-
def _build_autotools(module, log):
makefile_path = os.path.join(module.get_build_dir(), "Makefile")
@@ -152,8 +149,6 @@ def _build_module(module, log=None):
_build_activity(module, log)
elif os.path.exists(os.path.join(source_dir, "autogen.sh")):
_build_autotools(module, log)
- elif os.path.exists(os.path.join(source_dir, "Makefile")):
- _build_make(module, log)
else:
print "The source directory has unexpected content, please " \
"delete it and pull\nthe source again."