Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--devbot/build.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/devbot/build.py b/devbot/build.py
index 6a4d553..2e9ee44 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -115,9 +115,7 @@ def _build_autotools(module, log):
makefile_path = os.path.join(module.get_build_dir(), "Makefile")
if not os.path.exists(makefile_path):
- configure = os.path.join(module.get_source_dir(), "configure")
- if not os.path.exists(configure):
- configure = os.path.join(module.get_source_dir(), "autogen.sh")
+ configure = os.path.join(module.get_source_dir(), "autogen.sh")
args = [configure,
"--prefix", config.prefix_dir,