1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

doc/doxygen: remove support for lesscpy

lessc (node-less) and lesscpy do not produce the same output.
There are some minor whitespace +-1 in color values which
are not important but the output file is not stable

However lesscpy removes comments and so the license of the output file
As it produces an invalid file it support is dropped.

https://lesscpy.readthedocs.io/en/latest/#differences-from-less-js
This commit is contained in:
Gaëtan Harter 2019-02-20 11:24:16 +01:00
parent 0e71c8a6a3
commit 37349a0b19
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -5,15 +5,8 @@ export STRIP_FROM_INC_PATH_LIST=$(shell \
grep '/include$$' |\
sed 's/.*/\"$(subst /,\/,$(RIOTBASE))\/\0\"/')
# use lessc (http://lesscss.org/#using-less) for compiling CSS, alternatively
# fall back to lesscpy (https://github.com/lesscpy/lesscpy)
ifeq (,$(LESSC))
ifneq (,$(shell command -v lessc 2>/dev/null))
LESSC=lessc
else ifneq (,$(shell command -v lesscpy 2>/dev/null))
LESSC=lesscpy
endif
endif
# use lessc (http://lesscss.org/#using-less) for compiling CSS
LESSC ?= $(shell command -v lessc 2>/dev/null)
.PHONY: doc
doc: html