summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMarek Vavruša <marek.vavrusa@nic.cz>2015-02-18 11:41:57 +0100
committerMarek Vavruša <marek.vavrusa@nic.cz>2015-02-18 11:41:57 +0100
commitd7fece8f57db5d86bd52215f33f725387c4b15c5 (patch)
tree277e6303b89f1d87d4731ba0c12223435d3feea2 /README.md
parentdocker: default exec options (diff)
downloadknot-resolver-d7fece8f57db5d86bd52215f33f725387c4b15c5.tar.xz
knot-resolver-d7fece8f57db5d86bd52215f33f725387c4b15c5.zip
build: updated readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index d87dc919..63eba77f 100644
--- a/README.md
+++ b/README.md
@@ -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
```