diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2024-01-25 16:35:29 +0100 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2024-01-27 19:01:19 +0100 |
commit | 444bc5e237ca7d95c61f68e3a4951744058c9b64 (patch) | |
tree | 5acc910d3c402ac399b6b04111dab09cb8b46624 /docker/ubuntu-ci | |
parent | build: untangle sysconfdir & localstatedir (diff) | |
download | frr-444bc5e237ca7d95c61f68e3a4951744058c9b64.tar.xz frr-444bc5e237ca7d95c61f68e3a4951744058c9b64.zip |
build: update packaging & docs for dir changes
`--sysconfdir` and `--localstatedir` now align with general autoconf
practices.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'docker/ubuntu-ci')
-rw-r--r-- | docker/ubuntu-ci/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/ubuntu-ci/Dockerfile b/docker/ubuntu-ci/Dockerfile index 5cdbdb0f3..9b9b4061e 100644 --- a/docker/ubuntu-ci/Dockerfile +++ b/docker/ubuntu-ci/Dockerfile @@ -110,9 +110,9 @@ RUN cd ~/frr && \ ./bootstrap.sh && \ ./configure \ --prefix=/usr \ - --localstatedir=/var/run/frr \ + --sysconfdir=/etc \ + --localstatedir=/var \ --sbindir=/usr/lib/frr \ - --sysconfdir=/etc/frr \ --enable-sharpd \ --enable-multipath=64 \ --enable-user=frr \ |