Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/modules/sugar.json1
-rw-r--r--devbot/build.py5
2 files changed, 0 insertions, 6 deletions
diff --git a/config/modules/sugar.json b/config/modules/sugar.json
index b66c6e4..2c119e5 100644
--- a/config/modules/sugar.json
+++ b/config/modules/sugar.json
@@ -1,7 +1,6 @@
[
{
"name": "sugar-docs",
- "out-of-source": false,
"repo": "git://git.sugarlabs.org/sugar-docs/sugar-docs.git"
},
{
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."