17 lines
462 B
Diff
17 lines
462 B
Diff
diff --git a/uwsgiconfig.py b/uwsgiconfig.py
|
|
index 59393e1..e43f092 100644
|
|
--- a/uwsgiconfig.py
|
|
+++ b/uwsgiconfig.py
|
|
@@ -1422,10 +1422,7 @@ def build_plugin(path, uc, cflags, ldflags, libs, name = None):
|
|
except:
|
|
pass
|
|
|
|
- if uc:
|
|
- plugin_dest = uc.get('plugin_build_dir', uc.get('plugin_dir')) + '/' + name + '_plugin'
|
|
- else:
|
|
- plugin_dest = name + '_plugin'
|
|
+ plugin_dest = name + '_plugin'
|
|
|
|
shared_flag = '-shared'
|
|
|