From ad178d3f6df28b4a88a11cd27ad4c4c8ec7e8b9b Mon Sep 17 00:00:00 2001 From: nirenjan Date: Thu, 7 Oct 2021 01:14:05 -0700 Subject: [PATCH] Make doxygen CI build use release parameters. The previous commit used the value of `sysconfdir` to store the location of the daemon configuration file inside the generated documentation. However, the automatically generated documentation was using the default values, which meant that the config file was located at `/usr/local/etc/x52d/x52d.conf`, instead of just `/etc/x52d/x52d.conf`. Updating the arguments to `./configure` to match that of the release ensures that it will always stay up to date. --- .github/scripts/build-doxygen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/build-doxygen.sh b/.github/scripts/build-doxygen.sh index 913a255..458578a 100755 --- a/.github/scripts/build-doxygen.sh +++ b/.github/scripts/build-doxygen.sh @@ -5,5 +5,5 @@ set -e ./autogen.sh mkdir build cd build -../configure +../configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var make docs/.stamp