On Wed, Jul 18, 2012 at 03:15:50PM +0100, Sam Thursfield wrote:
We can set NOCONFIGURE=1 to prevent ./autogen.sh from running
configure
---
morphlib/buildsystem.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/morphlib/buildsystem.py b/morphlib/buildsystem.py
index 3e50b50..bd7db93 100644
--- a/morphlib/buildsystem.py
+++ b/morphlib/buildsystem.py
@@ -99,7 +99,7 @@ class AutotoolsBuildSystem(BuildSystem):
def __init__(self):
self.configure_commands = [
- 'if [ -e autogen.sh ]; then ./autogen.sh; ' +
+ 'NOCONFIGURE=1; if [ -e autogen.sh ]; then ./autogen.sh; ' +
Raised by Richard on IRC: this should be "export NOCONFIGURE=1". Other
than that I'm happy with the change. It's not worth going through another
review round just for this, so I'll add the export when merging.
--
http://www.codethink.co.uk/