Message ID | pull.1426.git.1668999695898.gitgitgadget@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 1c7dc23d4110f7585db27ad0dc7ee66ce4779480 |
Headers | show |
Series | lib-httpd: extend module location auto-detection | expand |
On Mon, Nov 21, 2022 at 03:01:35AM +0000, Eric Sunshine via GitGitGadget wrote: > From: Eric Sunshine <sunshine@sunshineco.com> > > 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. Yeah, this makes perfect sense. There is really no downside to checking in more places. :) -Peff
diff --git a/t/lib-httpd.sh b/t/lib-httpd.sh index 1f6b9b08d1d..5be3ee44c25 100644 --- a/t/lib-httpd.sh +++ b/t/lib-httpd.sh @@ -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