summaryrefslogtreecommitdiff
path: root/bin/auto_compile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/auto_compile')
-rwxr-xr-xbin/auto_compile8
1 files changed, 1 insertions, 7 deletions
diff --git a/bin/auto_compile b/bin/auto_compile
index 55ec3d02086..9d12a5d5c01 100755
--- a/bin/auto_compile
+++ b/bin/auto_compile
@@ -438,12 +438,6 @@ foreach $i (@BUILD_LIST) {
print LOG "#################### Tests\n";
if ($dont_run == 0) {
- my $config_params;
- if ($#CONFIGURATION_OPTIONS != -1) {
- $config_params = ' -Config ';
- }
- $config_params .= join ' -Config ', @CONFIGURATION_OPTIONS;
-
foreach my $i (@RUN_LIST) {
local $directory = '.';
@@ -467,7 +461,7 @@ if ($dont_run == 0) {
if ($sandbox ne "") {
$prefix = $sandbox.' '.$sandbox_timeout.' ';
}
- if (open(RUN, $prefix."perl $program $config_params 2>&1 |") == 0) {
+ if (open(RUN, $prefix."perl $program 2>&1 |") == 0) {
push @failures, "cannot run $program in $directory";
next;
}