From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS43350 77.247.176.0/21 X-Spam-Status: No, score=0.3 required=3.0 tests=BAYES_00,RCVD_IN_MSPIKE_BL, RCVD_IN_MSPIKE_ZBI,RCVD_IN_XBL,SPF_FAIL,SPF_HELO_FAIL,TO_EQ_FM_DOM_SPF_FAIL, URIBL_RED shortcircuit=no autolearn=no autolearn_force=no version=3.4.0 Received: from 80x24.org (chomsky.torservers.net [77.247.181.162]) by dcvr.yhbt.net (Postfix) with ESMTP id 56621203E2 for ; Sat, 23 Jul 2016 00:55:19 +0000 (UTC) From: Eric Wong To: spew@80x24.org Subject: [PATCH 1/3] t/lib-git-svn: check same httpd module dirs as lib-httpd Date: Sat, 23 Jul 2016 00:55:15 +0000 Message-Id: <20160723005517.5288-1-e@80x24.org> List-Id: From: Michael J Gruber Currently, lib-git-svn checks a proper subset of the paths that lib-httpd checks for apache modules. Make it check the same set so that apache is run by one when it is run by the other (provided ports have been set and there are no other configuration issues). Signed-off-by: Michael J Gruber Signed-off-by: Eric Wong --- t/lib-git-svn.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/t/lib-git-svn.sh b/t/lib-git-svn.sh index fb88232..206f0d4 100644 --- a/t/lib-git-svn.sh +++ b/t/lib-git-svn.sh @@ -84,8 +84,10 @@ prepare_httpd () { fi for d in \ "$SVN_HTTPD_MODULE_PATH" \ - /usr/lib/apache2/modules \ /usr/libexec/apache2 \ + /usr/lib/apache2/modules \ + /usr/lib64/httpd/modules \ + /usr/lib/httpd/modules \ ; do if test -d "$d" then -- EW