Files
freeipa/Makefile.pythonscripts.am
T

8 lines
265 B
Makefile
Raw Normal View History

2018-08-22 17:15:55 +02:00
# special handling of Python scripts with auto-generated shebang line
$(PYTHON_SHEBANG):%: %.in Makefile
2019-06-21 12:05:19 +02:00
$(AM_V_GEN)sed -e 's|^#!/usr/bin/python3.*|#!$(PYTHON) -E|g' $< > $@
2018-08-22 17:15:55 +02:00
$(AM_V_GEN)chmod +x $@
2019-04-18 16:55:00 +03:00
.PHONY: python_scripts_sub
python_scripts_sub: $(PYTHON_SHEBANG)