[Rt-commit] rt branch, 4.0/configure-web-handler, created. rt-4.0.1rc1-6-g5339220
Alex Vandiver
alexmv at bestpractical.com
Thu Jul 21 13:44:36 EDT 2011
The branch, 4.0/configure-web-handler has been created
at 5339220b76531c88dfa2a3d13b6dc4cbbffa2f03 (commit)
- Log -----------------------------------------------------------------
commit 5339220b76531c88dfa2a3d13b6dc4cbbffa2f03
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Jul 20 15:32:54 2011 -0400
Make rt-test-dependencies not warn when passed --with-standalone
diff --git a/sbin/rt-test-dependencies.in b/sbin/rt-test-dependencies.in
index 72dfd20..91842d6 100755
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -62,6 +62,7 @@ GetOptions(
'with-POSTGRESQL|with-pg|with-pgsql', 'with-SQLITE',
'with-ORACLE', 'with-FASTCGI',
'with-MODPERL1', 'with-MODPERL2',
+ 'with-STANDALONE',
'with-DEV',
@@ -362,7 +363,7 @@ check_users();
my %Missing_By_Type = ();
foreach my $type (sort grep $args{$_}, keys %args) {
- next unless ($type =~ /^with-(.*?)$/);
+ next unless ($type =~ /^with-(.*?)$/) and $deps{$1};
$type = $1;
section("$type dependencies");
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list