Tell that the pythonhosted.xml warning is expected

IN Makefile, test whather pythonhosted.xml exists. If not, tell to
ignore the warning.
This commit is contained in:
Pierre Labastie 2023-01-19 21:39:25 +01:00
parent e1dc8db6ef
commit b547faf379

View File

@ -287,7 +287,10 @@ $(PYHOSTED): $(ALL_PYTHON_DEPS) \
$(PYTHONHOSTED_MOD_PAGES) \
stylesheets/pyhosted-inc.xsl \
stylesheets/pythonhosted.xsl | version.ent
@echo Generating pythonhosted.xml
@echo Generating pythonhosted.xml; \
if [ ! -f $@ ]; then \
echo The following warning can be ignored...; \
fi
$(Q)xsltproc --xinclude \
--output temp.xml \
--stringparam packages "$(PYTHONHOSTED_MODS)" \