Merge pull request #211 from antmicro/enable_no_conda
Enable not using conda for docs build
This commit is contained in:
commit
6fd025ed33
|
@ -3,7 +3,13 @@
|
||||||
DOCSDIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
DOCSDIR := $(dir $(lastword $(MAKEFILE_LIST)))
|
||||||
TOPDIR := $(realpath $(DOCSDIR)/..)
|
TOPDIR := $(realpath $(DOCSDIR)/..)
|
||||||
|
|
||||||
|
ifndef NO_CONDA
|
||||||
include $(TOPDIR)/scripts/make/conda.mk
|
include $(TOPDIR)/scripts/make/conda.mk
|
||||||
|
endif
|
||||||
|
ifdef NO_CONDA
|
||||||
|
IN_CONDA_ENV :=
|
||||||
|
CONDA_ENV_PYTHON :=
|
||||||
|
endif
|
||||||
|
|
||||||
SHELL = /bin/bash
|
SHELL = /bin/bash
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue