# HG changeset patch # User Franz Glasner # Date 1592206970 -7200 # Node ID 098130d0f0f0a1434e5bf1ee077b1dd18a200781 # Parent e3249546c992e1a1ad8a3f28ecf45cf92f9da7b7 All plugins by default use the PATCHDIR of the uwsginl binary. So: All plugin-specific patches should be done there. diff -r e3249546c992 -r 098130d0f0f0 uwsginl-plugin-lang-py3/Makefile --- a/uwsginl-plugin-lang-py3/Makefile Mon Jun 15 09:41:15 2020 +0200 +++ b/uwsginl-plugin-lang-py3/Makefile Mon Jun 15 09:42:50 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 e3249546c992 -r 098130d0f0f0 uwsginl-plugin-lang-pypy3/Makefile --- a/uwsginl-plugin-lang-pypy3/Makefile Mon Jun 15 09:41:15 2020 +0200 +++ b/uwsginl-plugin-lang-pypy3/Makefile Mon Jun 15 09:42:50 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}