Changeset 6c4a91a8 for Makefile


Ignore:
Timestamp:
01/12/2023 08:59:51 AM (16 months ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
11.3, 12.0, 12.1, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18, xry111/xf86-video-removal
Children:
a2f7a1c
Parents:
7f5bdbb9
Message:

tidy up Makefile new part

Use the PYHOSTED variable
use $(Q) instead of @

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r7f5bdbb9 r6c4a91a8  
    275275        $(Q)./git-version.sh $(REV)
    276276
    277 ALL_PYTHON_DEPS := $(filter-out general/prog/python-dependencies/pythonhosted.xml, $(wildcard general/prog/python-dependencies/*.xml))
     277ALL_PYTHON_DEPS := $(filter-out $(PYHOSTED), $(wildcard general/prog/python-dependencies/*.xml))
    278278
    279279PYTHONHOSTED_MODS := requests sphinx_rtd_theme pytest gi-docgen
     
    282282
    283283$(PYHOSTED): $(ALL_PYTHON_DEPS) $(PYTHONHOSTED_MOD_PAGES) stylesheets/pythonhosted.xsl | version.ent
    284         @echo Generating pythonhosted.xml
    285         @xsltproc --xinclude \
     284        $(Q)echo Generating pythonhosted.xml
     285        $(Q)xsltproc --xinclude \
    286286        -o temp.xml \
    287287        --stringparam packages "$(PYTHONHOSTED_MODS)" \
    288288        stylesheets/pythonhosted.xsl \
    289289        general/prog/python-modules.xml
    290         @mv temp.xml $@
     290        $(Q)mv temp.xml $@
Note: See TracChangeset for help on using the changeset viewer.