]> git.ipfire.org Git - thirdparty/git.git/commitdiff
lib-httpd: extend module location auto-detection
authorEric Sunshine <sunshine@sunshineco.com>
Mon, 21 Nov 2022 03:01:35 +0000 (03:01 +0000)
committerJunio C Hamano <gitster@pobox.com>
Tue, 22 Nov 2022 00:57:53 +0000 (09:57 +0900)
Although it is possible to manually set LIB_HTTPD_PATH and
LIB_HTTPD_MODULE_PATH to point at the location of `httpd` and its
modules, doing so is cumbersome and easily forgotten. To address this,
0d344738dc (t/lib-http.sh: Restructure finding of default httpd
location, 2010-01-02) enhanced lib-httpd.sh to automatically detect the
location of `httpd` and its modules in order to facilitate out-of-the-
box testing on a wider range of platforms. Follow that lead by further
enhancing it to automatically detect the `httpd` modules on Void Linux,
as well.

Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/lib-httpd.sh

index 1f6b9b08d1de626397396f9878812a7a6e6f0ef8..5be3ee44c25f36b336eeb34ff31c73c2f512c239 100644 (file)
@@ -65,7 +65,8 @@ done
 for DEFAULT_HTTPD_MODULE_PATH in '/usr/libexec/apache2' \
                                 '/usr/lib/apache2/modules' \
                                 '/usr/lib64/httpd/modules' \
-                                '/usr/lib/httpd/modules'
+                                '/usr/lib/httpd/modules' \
+                                '/usr/libexec/httpd'
 do
        if test -d "$DEFAULT_HTTPD_MODULE_PATH"
        then