diff options
| author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-10-11 22:01:12 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-11 22:07:45 +0200 |
| commit | 9561504fe5d5bbfe2f2aecbfa8d24724a26a2cfd (patch) | |
| tree | aecbe22a85bf0bdd421d53004a242350653fdebb | |
| parent | b449ba80077d94e503521a53bc7e2613901dd1c7 (diff) | |
| download | buildroot-9561504fe5d5bbfe2f2aecbfa8d24724a26a2cfd.tar.gz buildroot-9561504fe5d5bbfe2f2aecbfa8d24724a26a2cfd.zip | |
botan: disable documentation
Fix following error if sphinx is found but its version is too low:
Sphinx version error:
This project needs at least Sphinx v1.2 and therefore cannot be built with this version.
Ignoring ImportError and using old theme
ERROR: Error running sphinx-build -q -c ./src/configs/sphinx -b html ./doc/manual build/docs/manual
Fixes:
- http://autobuild.buildroot.net/results/c15715a05a41035954f32510483314060ea31260
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
| -rw-r--r-- | package/botan/botan.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/botan/botan.mk b/package/botan/botan.mk index 3de54aa3e1..7f0bbb66c9 100644 --- a/package/botan/botan.mk +++ b/package/botan/botan.mk @@ -17,7 +17,8 @@ BOTAN_CONF_OPTS = \ --os=linux \ --cc=gcc \ --cc-bin="$(TARGET_CXX)" \ - --prefix=/usr + --prefix=/usr \ + --without-documentation ifeq ($(BR2_SHARED_LIBS),y) BOTAN_CONF_OPTS += \ |

