diff options
author | Marek Vavruša <marek.vavrusa@nic.cz> | 2015-02-18 11:41:57 +0100 |
---|---|---|
committer | Marek Vavruša <marek.vavrusa@nic.cz> | 2015-02-18 11:41:57 +0100 |
commit | d7fece8f57db5d86bd52215f33f725387c4b15c5 (patch) | |
tree | 277e6303b89f1d87d4731ba0c12223435d3feea2 /README.md | |
parent | docker: default exec options (diff) | |
download | knot-resolver-d7fece8f57db5d86bd52215f33f725387c4b15c5.tar.xz knot-resolver-d7fece8f57db5d86bd52215f33f725387c4b15c5.zip |
build: updated readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -32,13 +32,14 @@ $ docker run -it --entrypoint=/bin/bash cznic/knot-resolver The Knot DNS Resolver depends on the development version of the Knot DNS library, and a reasonably recent version of `libuv`. Several dependencies may not be in the packages yet, the script pulls and installs all dependencies in a chroot. +You can avoid rebuilding dependencies by specifying `BUILD_IGNORE` variable, see the [Dockerfile](scripts/Dockerfile) +for example. Usually you only really need to rebuild `libknot`. + ``` -$ FAKEROOT="/tmp/resolver-depends" -$ ./scripts/build-depends.sh ${FAKEROOT} +$ FAKEROOT="${HOME}/.local" +$ ./scripts/bootstrap-depends.sh ${FAKEROOT} $ export LDFLAGS="-L${FAKEROOT}/lib" $ export PKG_CONFIG_PATH="${FAKEROOT}/lib/pkgconfig" -$ ./configure --enable-integration-tests -$ autoreconf -if $ make $ make check ``` |