File wolfssl-nocmakegitetc-docbuild.patch of Package wolfssl
From: <davejplater@gmail.com> Date: 2019-12-24 Subject: Make docs requirement References: Upstream: doc/generate_documentation.sh wrongly checks for g++, cmake and git. Index: wolfssl-4.3.0-stable/doc/generate_documentation.sh =================================================================== --- wolfssl-4.3.0-stable.orig/doc/generate_documentation.sh 2019-12-20 21:10:34.000000000 +0200 +++ wolfssl-4.3.0-stable/doc/generate_documentation.sh 2019-12-24 12:28:16.637244278 +0200 @@ -8,24 +8,6 @@ GEN_PDF=false GEN_ALL=false INSTALL_DOX=false -command -v g++ -if [ $? -ne "0" ]; then -echo "Please install g++" -exit 1 -fi - -command -v cmake -if [ $? -ne "0" ]; then -echo "Please install cmake" -exit 1 -fi - -command -v git -if [ $? -ne "0" ]; then -echo "Please install git" -exit 1 -fi - command -v make if [ $? -ne "0" ]; then echo "Please install make"