Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-28 12:46:23 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-28 12:46:23 (GMT)
commit19682716ac2d00cfb378bb83db9195bd3ac62135 (patch)
treedad3b02198bf987a2c84327cd6e8455a9633a2b8 /devbot/build.py
parent12b29a9e5677beecdf932987395f7a5f15306af9 (diff)
Adapt to sugar-docs changes
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."