# HG changeset patch # User Franz Glasner # Date 1592165770 -7200 # Node ID badbe8b612659fe1e3e0ebf76a85a35400f3f8b2 # Parent 2b8606346ec7cd31f3862864a8eda1c4c97426ab All plugins by default use the PATCHDIR of the uwsginl binary. So: All plugin-specific patches should be done there. diff -r 2b8606346ec7 -r badbe8b61265 uwsginl-plugin-lang-py3/Makefile --- a/uwsginl-plugin-lang-py3/Makefile Sun Jun 14 21:00:58 2020 +0200 +++ b/uwsginl-plugin-lang-py3/Makefile Sun Jun 14 22:16:10 2020 +0200 @@ -49,6 +49,9 @@ # The complete basename of the plugin PLUGIN_FILENAME= ${PLUGIN_NAME}_plugin.so +# Use the PATCHDIR of the binary executable by default +PATCHDIR?= ${.CURDIR}/../uwsginl/files + do-configure: @${DO_NADA} diff -r 2b8606346ec7 -r badbe8b61265 uwsginl-plugin-lang-pypy3/Makefile --- a/uwsginl-plugin-lang-pypy3/Makefile Sun Jun 14 21:00:58 2020 +0200 +++ b/uwsginl-plugin-lang-pypy3/Makefile Sun Jun 14 22:16:10 2020 +0200 @@ -40,6 +40,9 @@ # The complete basename of the plugin PLUGIN_FILENAME= ${PLUGIN_NAME}_plugin.so +# Use the PATCHDIR of the binary executable by default +PATCHDIR?= ${.CURDIR}/../uwsginl/files + do-configure: @${DO_NADA}