You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2021/12/01 11:54:25 UTC

svn commit: r1895456 - /httpd/httpd/trunk/test/travis_run_linux.sh

Author: icing
Date: Wed Dec  1 11:54:25 2021
New Revision: 1895456

URL: http://svn.apache.org/viewvc?rev=1895456&view=rev
Log:
  * travis: installing librustls in $PREFIX and using
    it from there.


Modified:
    httpd/httpd/trunk/test/travis_run_linux.sh

Modified: httpd/httpd/trunk/test/travis_run_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_run_linux.sh?rev=1895456&r1=1895455&r2=1895456&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_run_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_run_linux.sh Wed Dec  1 11:54:25 2021
@@ -60,9 +60,9 @@ if test -v TEST_MOD_TLS; then
   pushd "$RUSTLS_HOME"
     git fetch origin
     git checkout tags/$RUSTLS_VERSION
-    make install
+    make install DESTDIR="$PREFIX"
   popd
-  CONFIG="$CONFIG --with-tls"
+  CONFIG="$CONFIG --with-tls --with-rustls=$PREFIX"
 fi
 
 srcdir=$PWD