]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
doc: remove bootstrap-depends.sh example
authorTomas Krizek <tomas.krizek@nic.cz>
Tue, 6 Nov 2018 14:31:23 +0000 (15:31 +0100)
committerVladimír Čunát <vladimir.cunat@nic.cz>
Wed, 14 Nov 2018 13:19:45 +0000 (14:19 +0100)
Dockerfile
doc/build.rst

index d2162dafd10140d8562c0fd6440bbde1f828a0ae..6decf6225c7cea18ecdb9f57290c76e438d703b0 100644 (file)
@@ -52,7 +52,6 @@ COPY . /tmp/knot-resolver
 # Build Knot Resolver
 ARG CFLAGS="-O2 -fstack-protector -g"
 ENV LDFLAGS -Wl,--as-needed
-ENV BUILD_IGNORE libedit-dev
 RUN cd /tmp/knot-resolver && \
        make "-j$(nproc)" && \
        make install DESTDIR=/tmp/root && \
index d638b68e877a7825b4e64cdf7fec0601c02382a3..55667a4e919c657cbb6e5870c2b844d3fb054a24 100644 (file)
@@ -233,17 +233,6 @@ Optional dependencies may be disabled as well using ``HAS_x=yes|no`` variable.
    Try ``LD_LIBRARY_PATH`` on Linux/BSD, and ``DYLD_FALLBACK_LIBRARY_PATH`` on OS X.
    Otherwise you need to add the locations to linker search path.
 
-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_ for example.
-Usually you only really need to rebuild libknot_.
-
-.. code-block:: bash
-
-   $ export FAKEROOT="${HOME}/.local"
-   $ export PKG_CONFIG_PATH="${FAKEROOT}/lib/pkgconfig"
-   $ export BUILD_IGNORE="..." # Ignore installed dependencies
-   $ ./scripts/bootstrap-depends.sh ${FAKEROOT}
-
 Building extras
 ~~~~~~~~~~~~~~~