diff options
Diffstat (limited to 'make/rules.in')
-rw-r--r-- | make/rules.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/make/rules.in b/make/rules.in index ae02766604de4..37bc50d82fecf 100644 --- a/make/rules.in +++ b/make/rules.in @@ -358,3 +358,12 @@ ALWAYS_MAKE_SYMTABLE = @ALWAYS_MAKE_SYMTABLE@ .docbook.8: ${XSLTPROC} -o $@ ${top_srcdir}/doc/xsl/isc-manpage.xsl $< + +### +### Python executable +### +.SUFFIXES: .py +.py: + cp -f $< $@ + chmod +x $@ + |