summaryrefslogtreecommitdiff
path: root/tools/test-build
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2015-03-23 00:54:40 +0100
committerAttila Molnar <attilamolnar@hush.com>2015-03-23 00:54:40 +0100
commitaaae660fee19a56c752bdec84da86c4b1e779af0 (patch)
tree56ecaeab588acc4afdbdf1ec4b1c1acdc21364e7 /tools/test-build
parente1e7ab0a18100d7e2cde0eb8d787f6ce1f958643 (diff)
parent214c6bc5254c94aa7f7ab49e3462728fb7be9d2a (diff)
Merge pull request #1005 from SaberUK/master+minor-tweaks
Various changes mainly relating to the build system.
Diffstat (limited to 'tools/test-build')
-rwxr-xr-xtools/test-build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test-build b/tools/test-build
index b809a401e..1b0192e31 100755
--- a/tools/test-build
+++ b/tools/test-build
@@ -51,7 +51,7 @@ foreach my $compiler (@compilers) {
foreach my $socketengine (@socketengines) {
print "Attempting to build using the $compiler compiler and the $socketengine socket engine...\n";
system './configure', '--enable-extras', $ENV{TEST_BUILD_MODULES} if defined $ENV{TEST_BUILD_MODULES};
- if (system './configure', '--disable-interactive', '--socketengine', $socketengine) {
+ if (system './configure', '--development', '--socketengine', $socketengine) {
print "Failed to configure using the $compiler compiler and the $socketengine socket engine!\n";
exit 1;
}